Home
last modified time | relevance | path

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

12

/arm-trusted-firmware-2.8.0/fdts/
A Dcorstone700_fvp.dts23 bank-width = <4>;
24 device-width= <2>;
33 reg-io-width = <2>;
A Dstm32mp157c-lxa-mc1.dts52 bus-width = <4>;
79 bus-width = <8>;
A Dstm32mp15xx-dhcor-avenger96.dtsi44 bus-width = <4>;
53 bus-width = <8>;
A Dcorstone700_fpga.dts20 reg-io-width = <2>;
A Dstm32mp157c-odyssey.dts31 bus-width = <4>;
A Dstm32mp157c-ev1.dts51 spi-rx-bus-width = <4>;
A Dstm32mp15xx-dhcom-som.dtsi181 spi-rx-bus-width = <4>;
299 bus-width = <4>;
325 bus-width = <8>;
A Dstm32mp157c-ed1.dts315 bus-width = <4>;
331 bus-width = <8>;
A Dstm32mp13-ddr3-1x4Gb-1066-binF.dtsi11 * width 16
A Da5ds.dts152 reg-io-width = <4>;
/arm-trusted-firmware-2.8.0/docs/resources/diagrams/plantuml/
A 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]
A 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]
A 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]
/arm-trusted-firmware-2.8.0/plat/xilinx/zynqmp/pm_service/
A Dpm_api_clock.c445 .width = 6,
457 .width = 6,
469 .width = 1,
506 .width = 1,
521 .width = 6,
589 .width = 6,
598 .width = 6,
611 .width = 1,
625 .width = 1,
639 .width = 1,
[all …]
/arm-trusted-firmware-2.8.0/lib/libc/
A 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()
/arm-trusted-firmware-2.8.0/drivers/mmc/
A Dmmc.c233 unsigned int width = bus_width; in mmc_set_ios() local
236 if (width == MMC_BUS_WIDTH_8) { in mmc_set_ios()
238 width = MMC_BUS_WIDTH_4; in mmc_set_ios()
240 ret = mmc_sd_switch(width); in mmc_set_ios()
246 (unsigned int)width); in mmc_set_ios()
254 return ops->set_ios(clk, width); in mmc_set_ios()
848 (width == MMC_BUS_WIDTH_4) || in mmc_init()
849 (width == MMC_BUS_WIDTH_8) || in mmc_init()
850 (width == MMC_BUS_WIDTH_DDR_4) || in mmc_init()
851 (width == MMC_BUS_WIDTH_DDR_8))); in mmc_init()
[all …]
/arm-trusted-firmware-2.8.0/drivers/imx/usdhc/
A Dimx_usdhc.c22 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width);
252 static int imx_usdhc_set_ios(unsigned int clk, unsigned int width) in imx_usdhc_set_ios() argument
258 if (width == MMC_BUS_WIDTH_4) in imx_usdhc_set_ios()
261 else if (width == MMC_BUS_WIDTH_8) in imx_usdhc_set_ios()
/arm-trusted-firmware-2.8.0/drivers/renesas/common/emmc/
A 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()
/arm-trusted-firmware-2.8.0/drivers/rpi3/sdhost/
A Drpi3_sdhost.c22 static int rpi3_sdhost_set_ios(unsigned int clk, unsigned int width);
425 static int rpi3_sdhost_set_ios(unsigned int clk, unsigned int width) in rpi3_sdhost_set_ios() argument
433 if (width != MMC_BUS_WIDTH_4 && width != MMC_BUS_WIDTH_1) { in rpi3_sdhost_set_ios()
434 ERROR("rpi3_sdhost: width %d not supported\n", width); in rpi3_sdhost_set_ios()
437 rpi3_sdhost_params.bus_width = width; in rpi3_sdhost_set_ios()
/arm-trusted-firmware-2.8.0/include/drivers/
A Dmmc.h137 int (*set_ios)(unsigned int clk, unsigned int width);
269 unsigned int width, unsigned int flags,
/arm-trusted-firmware-2.8.0/drivers/synopsys/emmc/
A 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()
/arm-trusted-firmware-2.8.0/drivers/st/clk/
A Dclk-stm32-core.c245 uint8_t width) in _get_div() argument
256 return (val != 0U) ? val : BIT(width); in _get_div()
277 mask = MASK_WIDTH_SHIFT(mux->width, mux->shift); in clk_mux_set_parent()
360 mask = MASK_WIDTH_SHIFT(mux->width, mux->shift); in clk_mux_get_parent()
733 val &= clk_div_mask(divider->width); in clk_stm32_div_get_value()
746 div = _get_div(divider->table, val, divider->flags, divider->width); in _clk_stm32_divider_recalc()
781 mask = MASK_WIDTH_SHIFT(divider->width, divider->shift); in clk_stm32_set_div()
A Dclk-stm32-core.h13 uint8_t width; member
31 uint8_t width; member
/arm-trusted-firmware-2.8.0/drivers/st/mmc/
A Dstm32_sdmmc2.c137 static int stm32_sdmmc2_set_ios(unsigned int clk, unsigned int width);
471 static int stm32_sdmmc2_set_ios(unsigned int clk, unsigned int width) in stm32_sdmmc2_set_ios() argument
479 switch (width) { in stm32_sdmmc2_set_ios()
/arm-trusted-firmware-2.8.0/drivers/brcm/emmc/
A Demmc_csl_sdcard.c51 static int set_card_data_width(struct sd_handle *handle, int width);
122 int set_card_data_width(struct sd_handle *handle, int width) in set_card_data_width() argument
130 switch (width) { in set_card_data_width()
168 width); in set_card_data_width()

Completed in 38 milliseconds

12