/external/arm-trusted-firmware/plat/intel/soc/agilex/ |
D | platform.mk | 9 -Iplat/intel/soc/agilex/include/ \ 10 -Iplat/intel/soc/common/drivers/ \ 11 -Iplat/intel/soc/common/include/ 27 plat/intel/soc/common/aarch64/platform_common.c \ 28 plat/intel/soc/common/aarch64/plat_helpers.S \ 29 plat/intel/soc/common/socfpga_delay_timer.c 34 drivers/intel/soc/stratix10/io/s10_memmap_qspi.c \ 42 plat/intel/soc/agilex/bl2_plat_setup.c \ 43 plat/intel/soc/agilex/soc/agilex_clock_manager.c \ 44 plat/intel/soc/agilex/soc/agilex_memory_controller.c \ [all …]
|
/external/arm-trusted-firmware/plat/intel/soc/stratix10/ |
D | platform.mk | 9 -Iplat/intel/soc/stratix10/include/ \ 10 -Iplat/intel/soc/common/drivers/ \ 11 -Iplat/intel/soc/common/include/ 27 plat/intel/soc/common/aarch64/platform_common.c \ 28 plat/intel/soc/common/aarch64/plat_helpers.S \ 29 plat/intel/soc/common/socfpga_delay_timer.c 34 drivers/intel/soc/stratix10/io/s10_memmap_qspi.c \ 42 plat/intel/soc/stratix10/bl2_plat_setup.c \ 43 plat/intel/soc/stratix10/soc/s10_clock_manager.c \ 44 plat/intel/soc/stratix10/soc/s10_memory_controller.c \ [all …]
|
/external/arm-trusted-firmware/plat/socionext/uniphier/ |
D | uniphier.h | 23 unsigned int uniphier_get_boot_device(unsigned int soc); 32 unsigned int uniphier_get_boot_master(unsigned int soc); 38 void uniphier_console_setup(unsigned int soc); 41 int uniphier_emmc_init(unsigned int soc, 43 int uniphier_nand_init(unsigned int soc, 45 int uniphier_usb_init(unsigned int soc, 48 int uniphier_io_setup(unsigned int soc, uintptr_t mem_base); 60 void uniphier_mmap_setup(unsigned int soc); 62 void uniphier_cci_init(unsigned int soc); 66 void uniphier_gic_driver_init(unsigned int soc); [all …]
|
D | uniphier_boot_device.c | 140 unsigned int uniphier_get_boot_device(unsigned int soc) in uniphier_get_boot_device() argument 146 assert(soc < ARRAY_SIZE(uniphier_boot_device_info)); in uniphier_get_boot_device() 147 info = &uniphier_boot_device_info[soc]; in uniphier_get_boot_device() 149 assert(soc < ARRAY_SIZE(uniphier_boot_device_info)); in uniphier_get_boot_device() 150 pinmon_base = uniphier_pinmon_base[soc]; in uniphier_get_boot_device() 172 unsigned int uniphier_get_boot_master(unsigned int soc) in uniphier_get_boot_master() argument 174 assert(soc < ARRAY_SIZE(uniphier_have_onchip_scp)); in uniphier_get_boot_master() 176 if (uniphier_have_onchip_scp[soc]) { in uniphier_get_boot_master() 179 assert(soc < ARRAY_SIZE(uniphier_boot_device_info)); in uniphier_get_boot_master() 180 pinmon_base = uniphier_pinmon_base[soc]; in uniphier_get_boot_master()
|
D | uniphier_xlat_setup.c | 37 void uniphier_mmap_setup(unsigned int soc) in uniphier_mmap_setup() argument 60 assert(soc < ARRAY_SIZE(uniphier_reg_region)); in uniphier_mmap_setup() 61 mmap_add_region(uniphier_reg_region[soc].base, in uniphier_mmap_setup() 62 uniphier_reg_region[soc].base, in uniphier_mmap_setup() 63 uniphier_reg_region[soc].size, in uniphier_mmap_setup()
|
D | uniphier_console_setup.c | 47 static uintptr_t uniphier_console_get_base(unsigned int soc) in uniphier_console_get_base() argument 52 assert(soc < ARRAY_SIZE(uniphier_uart_base)); in uniphier_console_get_base() 53 base = uniphier_uart_base[soc]; in uniphier_console_get_base() 73 void uniphier_console_setup(unsigned int soc) in uniphier_console_setup() argument 77 base = uniphier_console_get_base(soc); in uniphier_console_setup()
|
D | uniphier_io_storage.c | 251 static int uniphier_io_emmc_setup(unsigned int soc, size_t buffer_offset) in uniphier_io_emmc_setup() argument 256 ret = uniphier_emmc_init(soc, &block_dev_spec); in uniphier_io_emmc_setup() 263 static int uniphier_io_nand_setup(unsigned int soc, size_t buffer_offset) in uniphier_io_nand_setup() argument 268 ret = uniphier_nand_init(soc, &block_dev_spec); in uniphier_io_nand_setup() 286 static int uniphier_io_rom_api_setup(unsigned int soc) in uniphier_io_rom_api_setup() argument 291 assert(soc < ARRAY_SIZE(uniphier_ocm_base)); in uniphier_io_rom_api_setup() 292 ocm_base = uniphier_ocm_base[soc]; in uniphier_io_rom_api_setup() 315 static int uniphier_io_usb_setup(unsigned int soc, size_t buffer_offset) in uniphier_io_usb_setup() argument 321 ret = uniphier_io_rom_api_setup(soc); in uniphier_io_usb_setup() 325 ret = uniphier_usb_init(soc, &block_dev_spec); in uniphier_io_usb_setup()
|
D | uniphier_psci.c | 153 void uniphier_psci_init(unsigned int soc) in uniphier_psci_init() argument 155 assert(soc < ARRAY_SIZE(uniphier_psci_ctrl_base)); in uniphier_psci_init() 156 uniphier_rom_rsv_base = uniphier_psci_ctrl_base[soc].rom_rsv_base; in uniphier_psci_init() 157 uniphier_slfrst_base = uniphier_psci_ctrl_base[soc].slfrst_base; in uniphier_psci_init() 159 if (uniphier_get_boot_master(soc) == UNIPHIER_BOOT_MASTER_SCP) { in uniphier_psci_init()
|
D | uniphier_gicv3.c | 89 void uniphier_gic_driver_init(unsigned int soc) in uniphier_gic_driver_init() argument 91 assert(soc < ARRAY_SIZE(uniphier_gic_driver_data)); in uniphier_gic_driver_init() 93 gicv3_driver_init(&uniphier_gic_driver_data[soc]); in uniphier_gic_driver_init()
|
D | uniphier_cci.c | 61 void uniphier_cci_init(unsigned int soc) in uniphier_cci_init() argument 63 uniphier_cci_ops = uniphier_cci_ops_table[soc]; in uniphier_cci_init()
|
D | uniphier_usb.c | 167 int uniphier_usb_init(unsigned int soc, in uniphier_usb_init() argument 172 assert(soc < ARRAY_SIZE(uniphier_usb_rom_params)); in uniphier_usb_init() 173 param = &uniphier_usb_rom_params[soc]; in uniphier_usb_init()
|
/external/eigen/test/ |
D | product_mmtr.cpp | 39 MatrixColMaj soc(size,othersize); soc.setRandom(); in mmtr() local 48 CHECK_MMTR(matc, Lower, = s*soc*sor.adjoint()); in mmtr() 49 CHECK_MMTR(matc, Upper, = s*(soc*soc.adjoint())); in mmtr() 50 CHECK_MMTR(matr, Lower, = s*soc*soc.adjoint()); in mmtr() 51 CHECK_MMTR(matr, Upper, = soc*(s*sor.adjoint())); in mmtr() 53 CHECK_MMTR(matc, Lower, += s*soc*soc.adjoint()); in mmtr() 54 CHECK_MMTR(matc, Upper, += s*(soc*sor.transpose())); in mmtr() 55 CHECK_MMTR(matr, Lower, += s*sor*soc.adjoint()); in mmtr() 56 CHECK_MMTR(matr, Upper, += soc*(s*soc.adjoint())); in mmtr() 58 CHECK_MMTR(matc, Lower, -= s*soc*soc.adjoint()); in mmtr() [all …]
|
/external/arm-trusted-firmware/plat/arm/soc/common/ |
D | soc_css.mk | 9 BL1_SOURCES += plat/arm/soc/common/soc_css_security.c 11 BL2_SOURCES += plat/arm/soc/common/soc_css_security.c 13 BL2U_SOURCES += plat/arm/soc/common/soc_css_security.c 15 BL31_SOURCES += plat/arm/soc/common/soc_css_security.c
|
/external/autotest/client/site_tests/graphics_LibDRM/ |
D | graphics_LibDRM.py | 46 soc = utils.get_cpu_soc_family() 47 if not soc in arch_tests: 49 soc) 50 elif soc == 'tegra': 53 tests = tests_common + arch_tests[soc]
|
/external/cpuinfo/test/dmesg/ |
D | galaxy-s7-us.log | 168 … swapper/0: 1] i2c-msm-v2 75ba000.i2c: could not find pctldev for node /soc/pinctrl@01010000/s2… 170 … swapper/0: 1] i2c-msm-v2 75b5000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2… 172 … swapper/0: 1] i2c-msm-v2 75b6000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2… 189 [ 0.154449] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa1: Driver qco… 190 [ 0.154700] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa2: Driver qco… 191 [ 0.154907] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa3: Driver qco… 192 [ 0.155086] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa4: Driver qco… 193 [ 0.155263] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa5: Driver qco… 194 [ 0.155462] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-smpa7: Driver qco… 195 [ 0.155639] [1: swapper/0: 1] platform soc:qcom,rpm-smd:rpm-regulator-ldoa1: Driver qco… [all …]
|
D | oneplus-3t.log | 115 [ 0.168989]@0 i2c-msm-v2 75ba000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2c_… 116 [ 0.169796]@0 i2c-msm-v2 757a000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2c_… 117 [ 0.170277]@0 i2c-msm-v2 75b5000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2c_… 118 [ 0.170693]@0 i2c-msm-v2 7577000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2c_… 119 [ 0.171081]@0 i2c-msm-v2 75b6000.i2c: could not find pctldev for node /soc/pinctrl@01010000/i2c_… 120 [ 0.171529]@0 irq: no irq domain found for /soc/pinctrl@01010000 ! 136 [ 0.218197]@2 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-… 137 [ 0.218221]@2 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-… 138 [ 0.218238]@2 msm-thermal 70000.qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm… 139 [ 0.218251]@2 msm-thermal 70000.qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-th… [all …]
|
D | meizu-pro-6.log | 498 [ 0.297879] (0)[1:swapper/0]soc:usbphy@0 supply vcc not found, using dummy regulator 956 [ 0.783932] (0)[1:swapper/0]input: mtk-kpd as /devices/soc/10010000.keypad/input/input1 1091 [ 1.502954] (0)[1:swapper/0]input: synaptics_dsx as /devices/soc/11011000.i2c/i2c-4/4-0020/inpu… 1327 [ 1.599369] (0)[1:swapper/0]mtk_capture_probe: dev name mt-soc-ul1-pcm 1328 [ 1.602078] (0)[1:swapper/0]mtk_soc_dl1_probe: dev name mt-soc-dl1-pcm 1341 [ 1.610080] (0)[1:swapper/0]mtk_dummy_probe: dev name mt-soc-dummy-pcm 1344 [ 1.611171] (0)[1:swapper/0]mtk_afe_routing_probe: dev name mt-soc-routing-pcm 1347 [ 1.612071] (0)[1:swapper/0]mtk_capture2_probe: dev name mt-soc-ul2-pcm 1348 [ 1.613122] (0)[1:swapper/0]mtk_i2s2_adc2_probe: dev name mt-soc-i2s2_adc2-pcm 1351 [ 1.613528] (0)[1:swapper/0]mtk_voice_probe: dev name mt-soc-voicemd1 [all …]
|
D | pixel.log | 15 [ 0.484553] c0 52 clock-cpu-8996: set OPP pair (192000000 Hz, 535000 uv) on soc:qcom,m4m 16 [ 0.484597] c0 52 clock-cpu-8996: set OPP pair (1593600000 Hz, 910000 uv) on soc:qcom,m4m 22 [ 0.487495] c0 52 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst: … 25 [ 0.487900] c0 52 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst-p… 27 [ 0.489154] c0 52 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/q… 28 [ 0.489182] c0 52 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/q… 30 [ 0.489213] c0 52 msm-thermal 70000.qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/… 31 [ 0.489230] c0 52 msm-thermal 70000.qcom,msm-thermal: probe_psm:Failed reading node=/soc/qco… 35 [ 0.489653] c0 52 msm-thermal 70000.qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qco… 40 [ 0.491340] c0 52 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst: … [all …]
|
D | pixel-xl.log | 45 [ 0.555781] c0 43 clock-cpu-8996: set OPP pair (192000000 Hz, 535000 uv) on soc:qcom,m4m 46 [ 0.555835] c0 43 clock-cpu-8996: set OPP pair (1593600000 Hz, 890000 uv) on soc:qcom,m4m 52 [ 0.559170] c0 43 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst: … 55 [ 0.559668] c0 43 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst-p… 57 [ 0.561180] c0 43 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/q… 58 [ 0.561209] c0 43 msm-thermal 70000.qcom,msm-thermal: msm_thermal:Failed reading node=/soc/q… 60 [ 0.561241] c0 43 msm-thermal 70000.qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/… 61 [ 0.561260] c0 43 msm-thermal 70000.qcom,msm-thermal: probe_psm:Failed reading node=/soc/qco… 65 [ 0.561733] c0 43 msm-thermal 70000.qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qco… 70 [ 0.563581] c0 43 qcom,rpm-smd-regulator soc:qcom,rpm-smd:rpm-regulator-bstb:regulator-bst: … [all …]
|
D | galaxy-s8-us.log | 196 [ 0.377193] [0: swapper/0: 1] platform soc:qcom,msm-adsprpc-mem: assigned reserved memo… 200 ….388304] [1: swapper/0: 1] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading nod… 203 …88355] [1: swapper/0: 1] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading … 220 [ 0.455225] [4: swapper/0: 1] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 ! 241 ….531576] [4: kworker/u16:0: 6] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading nod… 244 …31905] [4: kworker/u16:0: 6] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading … 358 ….617660] [4: kworker/u16:0: 6] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading nod… 361 …17980] [4: kworker/u16:0: 6] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading … 400 [ 0.637508] [0: kworker/u16:0: 6] i2c i2c-6: of_i2c: modalias failure on /soc/i2c@c17a000/d… 443 ….671443] [0: kworker/u16:0: 6] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading nod… [all …]
|
/external/arm-trusted-firmware/plat/rockchip/rk3288/ |
D | platform.mk | 23 -I${RK_PLAT_SOC}/drivers/soc/ \ 56 ${RK_PLAT_SOC}/drivers/soc/soc.c \
|
/external/arm-trusted-firmware/plat/rockchip/rk3368/ |
D | platform.mk | 19 -I${RK_PLAT_SOC}/drivers/soc/ \ 55 ${RK_PLAT_SOC}/drivers/soc/soc.c \
|
/external/arm-trusted-firmware/plat/rockchip/px30/ |
D | platform.mk | 24 -I${RK_PLAT_SOC}/drivers/soc/ \ 59 ${RK_PLAT_SOC}/drivers/soc/soc.c \
|
/external/arm-trusted-firmware/plat/rockchip/rk3328/ |
D | platform.mk | 22 -I${RK_PLAT_SOC}/drivers/soc/ \ 56 ${RK_PLAT_SOC}/drivers/soc/soc.c
|
/external/arm-trusted-firmware/docs/plat/marvell/armada/ |
D | porting.rst | 11 - The customer platform specific code shall reside under ``plat/marvell/armada/<soc family>/<soc>_c… 13 - The platform name for build purposes is called ``<soc>_cust`` (e.g. ``a7040_cust``). 14 - The build system will reuse all files from within the soc directory, and take only the porting 17 Files that require porting are located at ``plat/marvell/armada/<soc family>/<soc>_cust`` directory. 126 phy-porting-layer.h file under: ``plat/marvell/armada/<soc 138 …- cp ``plat/marvell/armada/a8k/a80x0/board/phy-porting-layer.h`` "plat/marvell/armada/<soc family>…
|