Skip to content

Commit

Permalink
Add QCM2290 / scuba
Browse files Browse the repository at this point in the history
Also applies to QRB2210 / RB1

Signed-off-by: Konrad Dybcio <[email protected]>
  • Loading branch information
konradybcio committed Apr 12, 2023
1 parent c674428 commit 5e7ae7d
Show file tree
Hide file tree
Showing 4 changed files with 230 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ SRCS := debugcc.c \
msm8996.c \
msm8998.c \
qcs404.c \
qcm2290.c \
sc8280xp.c \
sdm845.c \
sm6115.c \
Expand All @@ -32,6 +33,7 @@ $(OUT): $(OBJS)
ln -f $(OUT) msm8996-debugcc
ln -f $(OUT) msm8998-debugcc
ln -f $(OUT) qcs404-debugcc
ln -f $(OUT) qcm2290-debugcc
ln -f $(OUT) sc8280xp-debugcc
ln -f $(OUT) sdm845-debugcc
ln -f $(OUT) sm6115-debugcc
Expand Down
1 change: 1 addition & 0 deletions debugcc.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ static const struct debugcc_platform *platforms[] = {
&msm8996_debugcc,
&msm8998_debugcc,
&qcs404_debugcc,
&qcm2290_debugcc,
&sc8280xp_debugcc,
&sdm845_debugcc,
&sm6115_debugcc,
Expand Down
1 change: 1 addition & 0 deletions debugcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ extern struct debugcc_platform msm8994_debugcc;
extern struct debugcc_platform msm8996_debugcc;
extern struct debugcc_platform msm8998_debugcc;
extern struct debugcc_platform qcs404_debugcc;
extern struct debugcc_platform qcm2290_debugcc;
extern struct debugcc_platform sc8280xp_debugcc;
extern struct debugcc_platform sdm845_debugcc;
extern struct debugcc_platform sm6115_debugcc;
Expand Down
226 changes: 226 additions & 0 deletions qcm2290.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
// SPDX-License-Identifier: BSD-3-Clause
/* Copyright (c) 2023, Linaro Limited */

#include <sys/mman.h>
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "debugcc.h"

static struct debug_mux cpu_cc = {
.phys = 0xf111000,
.size = 0x1000,
.block_name = "cpu",

.enable_reg = 0x1c,
.enable_mask = BIT(0),

.mux_reg = 0x1c,
.mux_mask = 0x3ff << 8,
.mux_shift = 8,

.div_reg = 0x1c,
.div_mask = 0xf << 28,
.div_shift = 28,
};

static struct debug_mux disp_cc = {
.phys = 0x5f00000,
.size = 0x20000,
.block_name = "disp",

.enable_reg = 0x500c,
.enable_mask = BIT(0),

.mux_reg = 0x7000,
.mux_mask = 0xff,

.div_reg = 0x5008,
.div_mask = 0x3,
.div_val = 4,
};

static struct debug_mux gcc = {
.phys = 0x1400000,
.size = 0x1f0000,

.enable_reg = 0x30004,
.enable_mask = BIT(0),

.mux_reg = 0x62000,
.mux_mask = 0x3ff,

.div_reg = 0x30000,
.div_mask = 0xf,
.div_val = 4,

.xo_div4_reg = 0x28008,
.debug_ctl_reg = 0x62038,
.debug_status_reg = 0x6203c,
};

static struct debug_mux gpu_cc = {
.phys = 0x5990000,
.size = 0x9000,
.block_name = "gpu",

.enable_reg = 0x1100,
.enable_mask = BIT(0),

.mux_reg = 0x1568,
.mux_mask = 0xff,

.div_reg = 0x10fc,
.div_mask = 0x3,
.div_val = 2,
};

static struct debug_mux mc_cc = {
.phys = 0x447d000, /* 0x447d220 */
.size = 0x1000, /* 0x100 */
.block_name = "mc",

.measure = measure_mccc,
};

static struct measure_clk qcm2290_clocks[] = {
{ "pwrcl_clk", &gcc, 0xab, &cpu_cc, 0x0 },

// { "apcs_debug_mux", &gcc, 0xab },
// { "disp_cc_debug_mux", &gcc, 0x41 },
{ "gcc_ahb2phy_csi_clk", &gcc, 0x62 },
{ "gcc_ahb2phy_usb_clk", &gcc, 0x63 },
{ "gcc_bimc_gpu_axi_clk", &gcc, 0x8d },
{ "gcc_boot_rom_ahb_clk", &gcc, 0x75 },
{ "gcc_cam_throttle_nrt_clk", &gcc, 0x4b },
{ "gcc_cam_throttle_rt_clk", &gcc, 0x4a },
{ "gcc_camera_ahb_clk", &gcc, 0x36 },
{ "gcc_camera_xo_clk", &gcc, 0x3e },
{ "gcc_camss_axi_clk", &gcc, 0x120 },
{ "gcc_camss_camnoc_atb_clk", &gcc, 0x122 },
{ "gcc_camss_camnoc_nts_xo_clk", &gcc, 0x123 },
{ "gcc_camss_cci_0_clk", &gcc, 0x11e },
{ "gcc_camss_cphy_0_clk", &gcc, 0x115 },
{ "gcc_camss_cphy_1_clk", &gcc, 0x116 },
{ "gcc_camss_csi0phytimer_clk", &gcc, 0x10b },
{ "gcc_camss_csi1phytimer_clk", &gcc, 0x10c },
{ "gcc_camss_mclk0_clk", &gcc, 0x10d },
{ "gcc_camss_mclk1_clk", &gcc, 0x10e },
{ "gcc_camss_mclk2_clk", &gcc, 0x10f },
{ "gcc_camss_mclk3_clk", &gcc, 0x110 },
{ "gcc_camss_nrt_axi_clk", &gcc, 0x124 },
{ "gcc_camss_ope_ahb_clk", &gcc, 0x11d },
{ "gcc_camss_ope_clk", &gcc, 0x11b },
{ "gcc_camss_rt_axi_clk", &gcc, 0x126 },
{ "gcc_camss_tfe_0_clk", &gcc, 0x111 },
{ "gcc_camss_tfe_0_cphy_rx_clk", &gcc, 0x113 },
{ "gcc_camss_tfe_0_csid_clk", &gcc, 0x117 },
{ "gcc_camss_tfe_1_clk", &gcc, 0x112 },
{ "gcc_camss_tfe_1_cphy_rx_clk", &gcc, 0x114 },
{ "gcc_camss_tfe_1_csid_clk", &gcc, 0x119 },
{ "gcc_camss_top_ahb_clk", &gcc, 0x11f },
{ "gcc_cfg_noc_usb3_prim_axi_clk", &gcc, 0x1c },
{ "gcc_disp_ahb_clk", &gcc, 0x37 },
{ "gcc_disp_gpll0_div_clk_src", &gcc, 0x46 },
{ "gcc_disp_hf_axi_clk", &gcc, 0x3c },
{ "gcc_disp_throttle_core_clk", &gcc, 0x48 },
{ "gcc_disp_xo_clk", &gcc, 0x3f },
{ "gcc_gp1_clk", &gcc, 0xb6 },
{ "gcc_gp2_clk", &gcc, 0xb7 },
{ "gcc_gp3_clk", &gcc, 0xb8 },
{ "gcc_gpu_cfg_ahb_clk", &gcc, 0xe1 },
{ "gcc_gpu_gpll0_clk_src", &gcc, 0xe7 },
{ "gcc_gpu_gpll0_div_clk_src", &gcc, 0xe8 },
{ "gcc_gpu_memnoc_gfx_clk", &gcc, 0xe4 },
{ "gcc_gpu_snoc_dvm_gfx_clk", &gcc, 0xe6 },
{ "gcc_gpu_throttle_core_clk", &gcc, 0xeb },
{ "gcc_pdm2_clk", &gcc, 0x72 },
{ "gcc_pdm_ahb_clk", &gcc, 0x70 },
{ "gcc_pdm_xo4_clk", &gcc, 0x71 },
{ "gcc_pwm0_xo512_clk", &gcc, 0x73 },
{ "gcc_qmip_camera_nrt_ahb_clk", &gcc, 0x39 },
{ "gcc_qmip_camera_rt_ahb_clk", &gcc, 0x47 },
{ "gcc_qmip_disp_ahb_clk", &gcc, 0x3a },
{ "gcc_qmip_gpu_cfg_ahb_clk", &gcc, 0xe9 },
{ "gcc_qmip_video_vcodec_ahb_clk", &gcc, 0x38 },
{ "gcc_qupv3_wrap0_core_2x_clk", &gcc, 0x69 },
{ "gcc_qupv3_wrap0_core_clk", &gcc, 0x68 },
{ "gcc_qupv3_wrap0_s0_clk", &gcc, 0x6a },
{ "gcc_qupv3_wrap0_s1_clk", &gcc, 0x6b },
{ "gcc_qupv3_wrap0_s2_clk", &gcc, 0x6c },
{ "gcc_qupv3_wrap0_s3_clk", &gcc, 0x6d },
{ "gcc_qupv3_wrap0_s4_clk", &gcc, 0x6e },
{ "gcc_qupv3_wrap0_s5_clk", &gcc, 0x6f },
{ "gcc_qupv3_wrap_0_m_ahb_clk", &gcc, 0x66 },
{ "gcc_qupv3_wrap_0_s_ahb_clk", &gcc, 0x67 },
{ "gcc_sdcc1_ahb_clk", &gcc, 0xef },
{ "gcc_sdcc1_apps_clk", &gcc, 0xee },
{ "gcc_sdcc1_ice_core_clk", &gcc, 0xf0 },
{ "gcc_sdcc2_ahb_clk", &gcc, 0x65 },
{ "gcc_sdcc2_apps_clk", &gcc, 0x64 },
{ "gcc_sys_noc_cpuss_ahb_clk", &gcc, 0x9 },
{ "gcc_sys_noc_usb3_prim_axi_clk", &gcc, 0x18 },
{ "gcc_usb30_prim_master_clk", &gcc, 0x5b },
{ "gcc_usb30_prim_mock_utmi_clk", &gcc, 0x5d },
{ "gcc_usb30_prim_sleep_clk", &gcc, 0x5c },
{ "gcc_usb3_prim_phy_com_aux_clk", &gcc, 0x5e },
{ "gcc_usb3_prim_phy_pipe_clk", &gcc, 0x5f },
{ "gcc_vcodec0_axi_clk", &gcc, 0x12c },
{ "gcc_venus_ahb_clk", &gcc, 0x12d },
{ "gcc_venus_ctl_axi_clk", &gcc, 0x12b },
{ "gcc_video_ahb_clk", &gcc, 0x35 },
{ "gcc_video_axi0_clk", &gcc, 0x3b },
{ "gcc_video_throttle_core_clk", &gcc, 0x49 },
{ "gcc_video_vcodec0_sys_clk", &gcc, 0x129 },
{ "gcc_video_venus_ctl_clk", &gcc, 0x127 },
{ "gcc_video_xo_clk", &gcc, 0x3d },
// { "gpu_cc_debug_mux", &gcc, 0xe3 },
// { "mc_cc_debug_mux", &gcc, 0x9b },
{ "measure_only_cnoc_clk", &gcc, 0x19 },
{ "measure_only_ipa_2x_clk", &gcc, 0xc2 },
{ "measure_only_snoc_clk", &gcc, 0x7 },
{ "measure_only_qpic_clk", &gcc, 0x9c },
{ "measure_only_qpic_ahb_clk", &gcc, 0x9e },
{ "measure_only_hwkm_km_core_clk", &gcc, 0xa0 },
{ "measure_only_hwkm_ahb_clk", &gcc, 0xa2 },
{ "measure_only_pka_core_clk", &gcc, 0xa3 },
{ "measure_only_pka_ahb_clk", &gcc, 0xa4 },
{ "measure_only_cpuss_gnoc_clk", &gcc, 0xa6 },

{ "disp_cc_mdss_ahb_clk", &gcc, 0x41, &disp_cc, 0x1a },
{ "disp_cc_mdss_byte0_clk", &gcc, 0x41, &disp_cc, 0x11 },
{ "disp_cc_mdss_byte0_intf_clk", &gcc, 0x41, &disp_cc, 0x12 },
{ "disp_cc_mdss_esc0_clk", &gcc, 0x41, &disp_cc, 0x13 },
{ "disp_cc_mdss_mdp_clk", &gcc, 0x41, &disp_cc, 0xe },
{ "disp_cc_mdss_mdp_lut_clk", &gcc, 0x41, &disp_cc, 0xf },
{ "disp_cc_mdss_non_gdsc_ahb_clk", &gcc, 0x41, &disp_cc, 0x1b },
{ "disp_cc_mdss_pclk0_clk", &gcc, 0x41, &disp_cc, 0xd },
{ "disp_cc_mdss_vsync_clk", &gcc, 0x41, &disp_cc, 0x10 },
{ "disp_cc_sleep_clk", &gcc, 0x41, &disp_cc, 0x24 },
{ "disp_cc_xo_clk", &gcc, 0x41, &disp_cc, 0x23 },

{ "gpu_cc_ahb_clk", &gcc, 0xe3, &gpu_cc, 0x10 },
{ "gpu_cc_crc_ahb_clk", &gcc, 0xe3, &gpu_cc, 0x11 },
{ "gpu_cc_cx_gfx3d_clk", &gcc, 0xe3, &gpu_cc, 0x1a },
{ "gpu_cc_cx_gmu_clk", &gcc, 0xe3, &gpu_cc, 0x18 },
{ "gpu_cc_cx_snoc_dvm_clk", &gcc, 0xe3, &gpu_cc, 0x15 },
{ "gpu_cc_cxo_aon_clk", &gcc, 0xe3, &gpu_cc, 0xa },
{ "gpu_cc_cxo_clk", &gcc, 0xe3, &gpu_cc, 0x19 },
{ "gpu_cc_gx_cxo_clk", &gcc, 0xe3, &gpu_cc, 0xe },
{ "gpu_cc_gx_gfx3d_clk", &gcc, 0xe3, &gpu_cc, 0xb },
{ "gpu_cc_sleep_clk", &gcc, 0xe3, &gpu_cc, 0x16 },

{ "mccc_clk", &gcc, 0x9b, &mc_cc, 0x220 },

{}
};

struct debugcc_platform qcm2290_debugcc = {
"qcm2290",
qcm2290_clocks,
};

0 comments on commit 5e7ae7d

Please sign in to comment.