| /rk3399_ARM-atf/tools/memory/src/memory/ |
| H A D | printer.py | 33 width: int = 10, 44 width: int = 10, 47 formatted_args = self.format_args(*args, width=width, fmt=fmt) 56 width: int, 63 len_over = len(section_name) - width 70 sec_row_l = empty_col.format(sep, fill + "<", width) * rel_pos 71 sec_row_r = empty_col.format(sep, fill + ">", width) * (columns - rel_pos - 1)
|
| H A D | memmap.py | 69 width: int, 75 obj.printer = TfaPrettyPrinter(columns=width, as_decimal=d)
|
| /rk3399_ARM-atf/docs/resources/diagrams/plantuml/ |
| H A D | el3_spm_dfd.puml | 21 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7] 39 gic [label="GIC" width=1.2 height=0.5] 40 smmu [label="SMMU" width=1.2 height=0.5] 41 uart [label="UART" width=1.2 height=0.5] 42 pe [label="PE" width=1.2 height=0.5] 56 bl2 [label="BL2" width=1.2 height=0.5]
|
| H A D | spm_dfd.puml | 19 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7] 35 gic [label="GIC" width=1.2 height=0.5] 36 smmu [label="SMMU" width=1.2 height=0.5] 37 uart [label="UART" width=1.2 height=0.5] 38 pe [label="PE" width=1.2 height=0.5] 57 bl2 [label="BL2" width=1.2 height=0.5]
|
| H A D | tfa_dfd.puml | 22 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7] 41 gic [label="GIC" width=1.2 height=0.5] 42 tzc [label="TZ\nController" width=1.2 height=0.5]
|
| H A D | tfa_rse_dfd.puml | 22 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7] 42 gic [label="GIC" width=1.2 height=0.5] 43 tzc [label="TZ\nController" width=1.2 height=0.5]
|
| H A D | tfa_arm_cca_dfd.puml | 22 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7] 42 gic [label="GIC" width=1.2 height=0.5] 43 mmu [label="MMU" width=1.2 height=0.5]
|
| H A D | firmware_handoff_dfd.puml | 7 node [fillcolor="#ffb866" style=filled shape=box fixedsize=true width=1.6 height=0.7]
|
| /rk3399_ARM-atf/fdts/ |
| H A D | corstone700_fvp.dts | 23 bank-width = <4>; 24 device-width= <2>; 33 reg-io-width = <2>;
|
| H A D | stm32mp157c-lxa-mc1.dts | 52 bus-width = <4>; 79 bus-width = <8>;
|
| H A D | stm32mp15xx-dhcor-avenger96.dtsi | 44 bus-width = <4>; 53 bus-width = <8>;
|
| H A D | corstone700_fpga.dts | 20 reg-io-width = <2>;
|
| H A D | stm32mp157c-odyssey.dts | 31 bus-width = <4>;
|
| H A D | stm32mp151a-prtt1a.dts | 54 spi-rx-bus-width = <4>; 198 bus-width = <4>; 219 bus-width = <8>;
|
| H A D | stm32mp157c-ev1-sp_min.dts | 52 spi-rx-bus-width = <4>;
|
| H A D | stm32mp157c-ev1.dts | 53 spi-rx-bus-width = <4>;
|
| H A D | stm32mp15xx-dhcom-som.dtsi | 184 spi-rx-bus-width = <4>; 323 bus-width = <4>; 349 bus-width = <8>;
|
| /rk3399_ARM-atf/plat/xilinx/zynqmp/pm_service/ |
| H A D | pm_api_clock.c | 113 .width = PERIPH_MUX_WIDTH, \ 125 .width = PERIPH_MUX_WIDTH, \ 138 .width = PERIPH_DIV1_WIDTH, \ 151 .width = PERIPH_DIV2_WIDTH, \ 165 .width = PERIPH_DIV##id##_WIDTH, \ 179 .width = PERIPH_GATE_WIDTH, \ 192 .width = PERIPH_GATE_WIDTH, \ 217 uint8_t width; member 256 .width = NA_WIDTH, 268 .width = NA_WIDTH, [all …]
|
| /rk3399_ARM-atf/lib/libc/ |
| H A D | snprintf.c | 49 int width; in unsigned_num_print() local 70 width = i; in unsigned_num_print() 71 for (i = padn - width; i > 0; i--) { in unsigned_num_print() 74 for (i = width; i > 0; i--) { in unsigned_num_print() 77 for (i = width + padn; i < 0; i++) { in unsigned_num_print()
|
| /rk3399_ARM-atf/drivers/mmc/ |
| H A D | mmc.c | 232 unsigned int width = bus_width; in mmc_set_ios() local 235 if (width == MMC_BUS_WIDTH_8) { in mmc_set_ios() 237 width = MMC_BUS_WIDTH_4; in mmc_set_ios() 239 ret = mmc_sd_switch(width); in mmc_set_ios() 245 (unsigned int)width); in mmc_set_ios() 253 return ops->set_ios(clk, width); in mmc_set_ios() 828 unsigned int width, unsigned int flags, in mmc_init() argument 840 ((width == MMC_BUS_WIDTH_1) || in mmc_init() 841 (width == MMC_BUS_WIDTH_4) || in mmc_init() 842 (width == MMC_BUS_WIDTH_8) || in mmc_init() [all …]
|
| /rk3399_ARM-atf/drivers/renesas/common/emmc/ |
| H A D | emmc_mount.c | 21 static EMMC_ERROR_CODE emmc_bus_width(uint32_t width); 313 static EMMC_ERROR_CODE emmc_bus_width(uint32_t width) in emmc_bus_width() argument 318 if ((width != 8) && (width != 4) && (width != 1)) { in emmc_bus_width() 330 mmc_drv_obj.bus_width = (HAL_MEMCARD_DATA_WIDTH) (width >> 2); in emmc_bus_width()
|
| /rk3399_ARM-atf/drivers/rpi3/sdhost/ |
| H A D | rpi3_sdhost.c | 22 static int rpi3_sdhost_set_ios(unsigned int clk, unsigned int width); 424 static int rpi3_sdhost_set_ios(unsigned int clk, unsigned int width) in rpi3_sdhost_set_ios() argument 432 if (width != MMC_BUS_WIDTH_4 && width != MMC_BUS_WIDTH_1) { in rpi3_sdhost_set_ios() 433 ERROR("rpi3_sdhost: width %d not supported\n", width); in rpi3_sdhost_set_ios() 436 rpi3_sdhost_params.bus_width = width; in rpi3_sdhost_set_ios()
|
| /rk3399_ARM-atf/drivers/imx/usdhc/ |
| H A D | imx_usdhc.c | 39 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width); 399 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width) in imx_usdhc_set_ios() argument 409 if (width == MMC_BUS_WIDTH_4) in imx_usdhc_set_ios() 412 else if (width == MMC_BUS_WIDTH_8) in imx_usdhc_set_ios()
|
| /rk3399_ARM-atf/include/drivers/ |
| H A D | mmc.h | 138 int (*set_ios)(unsigned int clk, unsigned int width); 270 unsigned int width, unsigned int flags,
|
| /rk3399_ARM-atf/drivers/synopsys/emmc/ |
| H A D | dw_mmc.c | 125 static int dw_set_ios(unsigned int clk, unsigned int width); 322 static int dw_set_ios(unsigned int clk, unsigned int width) in dw_set_ios() argument 324 switch (width) { in dw_set_ios()
|