Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 56) sorted by relevance

123

/trusted-firmware-a-latest/tools/memory/memory/
Dprinter.py27 def format_args(self, *args, width=10, fmt=None): argument
32 def format_row(self, leading, *args, width=10, fmt=None): argument
33 formatted_args = self.format_args(*args, width=width, fmt=fmt)
42 width: int = None,
49 len_over = len(section_name) - width
56 sec_row_l = empty_col.format(sep, fill + "<", width) * rel_pos
57 sec_row_r = empty_col.format(sep, fill + ">", width) * (
128 width=col_width,
Dmemmap.py82 width: int,
90 printer = TfaPrettyPrinter(columns=width, as_decimal=d)
/trusted-firmware-a-latest/fdts/
Dcorstone700_fvp.dts23 bank-width = <4>;
24 device-width= <2>;
33 reg-io-width = <2>;
Dstm32mp157c-lxa-mc1.dts52 bus-width = <4>;
79 bus-width = <8>;
Dstm32mp15xx-dhcor-avenger96.dtsi44 bus-width = <4>;
53 bus-width = <8>;
Dcorstone700_fpga.dts20 reg-io-width = <2>;
Dstm32mp157c-odyssey.dts31 bus-width = <4>;
Dstm32mp151a-prtt1a.dts53 spi-rx-bus-width = <4>;
176 bus-width = <4>;
197 bus-width = <8>;
Dstm32mp157c-ev1.dts53 spi-rx-bus-width = <4>;
Dstm32mp15xx-dhcom-som.dtsi184 spi-rx-bus-width = <4>;
302 bus-width = <4>;
328 bus-width = <8>;
/trusted-firmware-a-latest/docs/resources/diagrams/plantuml/
Del3_spm_dfd.puml21 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]
Dspm_dfd.puml19 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]
Dtfa_dfd.puml22 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]
Dtfa_rss_dfd.puml22 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]
Dtfa_arm_cca_dfd.puml22 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]
/trusted-firmware-a-latest/plat/xilinx/zynqmp/pm_service/
Dpm_api_clock.c112 .width = PERIPH_MUX_WIDTH, \
124 .width = PERIPH_MUX_WIDTH, \
137 .width = PERIPH_DIV1_WIDTH, \
150 .width = PERIPH_DIV2_WIDTH, \
164 .width = PERIPH_DIV##id##_WIDTH, \
178 .width = PERIPH_GATE_WIDTH, \
191 .width = PERIPH_GATE_WIDTH, \
216 uint8_t width; member
255 .width = NA_WIDTH,
267 .width = NA_WIDTH,
[all …]
/trusted-firmware-a-latest/lib/libc/
Dsnprintf.c49 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()
/trusted-firmware-a-latest/drivers/mmc/
Dmmc.c232 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 …]
/trusted-firmware-a-latest/plat/intel/soc/common/drivers/sdmmc/
Dsdmmc.c214 unsigned int width = bus_width; in sdmmc_set_ios() local
217 if (width == MMC_BUS_WIDTH_8) { in sdmmc_set_ios()
219 width = MMC_BUS_WIDTH_4; in sdmmc_set_ios()
221 ret = sdmmc_mmc_sd_switch(width); in sdmmc_set_ios()
227 (unsigned int)width); in sdmmc_set_ios()
235 return ops->set_ios(clk, width); in sdmmc_set_ios()
712 unsigned int width, unsigned int flags, in sd_or_mmc_init() argument
724 ((width == MMC_BUS_WIDTH_1) || in sd_or_mmc_init()
725 (width == MMC_BUS_WIDTH_4) || in sd_or_mmc_init()
726 (width == MMC_BUS_WIDTH_8) || in sd_or_mmc_init()
[all …]
Dsdmmc.h39 unsigned int width, unsigned int flags,
/trusted-firmware-a-latest/drivers/imx/usdhc/
Dimx_usdhc.c22 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width);
254 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width) in imx_usdhc_set_ios() argument
260 if (width == MMC_BUS_WIDTH_4) in imx_usdhc_set_ios()
263 else if (width == MMC_BUS_WIDTH_8) in imx_usdhc_set_ios()
/trusted-firmware-a-latest/drivers/renesas/common/emmc/
Demmc_mount.c21 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()
/trusted-firmware-a-latest/drivers/rpi3/sdhost/
Drpi3_sdhost.c22 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()
/trusted-firmware-a-latest/include/drivers/
Dmmc.h137 int (*set_ios)(unsigned int clk, unsigned int width);
269 unsigned int width, unsigned int flags,
/trusted-firmware-a-latest/drivers/synopsys/emmc/
Ddw_mmc.c125 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()

123