Home
last modified time | relevance | path

Searched refs:dt (Results 1 – 25 of 997) sorted by relevance

12345678910>>...40

/u-boot/dts/
A DMakefile19 $(obj)/dt-$(SPL_NAME).dtb: dts/dt.dtb $(objtree)/tools/fdtgrep FORCE
24 $(obj)/dt.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
27 $(obj)/dt.dtb: $(DTB) FORCE
31 targets += dt.dtb
47 obj-$(CONFIG_OF_EMBED) := dt-spl.dtb.o
49 $(obj)/dt-spl.dtb.o: $(obj)/dt-spl.dtb.S FORCE
52 obj-$(CONFIG_OF_EMBED) := dt.dtb.o
56 dtbs: $(obj)/dt.dtb
60 spl_dtbs: $(obj)/dt-$(SPL_NAME).dtb
63 clean-files := dt.dtb.S
/u-boot/drivers/video/exynos/
A Dexynos_mipi_dsi.c248 dt->e_interface = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
251 dt->e_virtual_ch = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
257 dt->e_burst_mode = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
263 dt->e_byte_clk = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
266 dt->hfp = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
269 dt->p = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
271 dt->m = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
273 dt->s = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
279 dt->esc_clk = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
285 dt->bta_timeout = fdtdec_get_int(blob, node, in exynos_dsim_config_parse_dt()
[all …]
/u-boot/lib/zstd/common/
A Dfse_decompress.c66 void FSE_freeDTable (FSE_DTable* dt) in FSE_freeDTable() argument
68 ZSTD_free(dt); in FSE_freeDTable()
101 ZSTD_memcpy(dt, &DTableH, sizeof(DTableH)); in FSE_buildDTable_internal()
189 void* ptr = dt; in FSE_buildDTable_rle()
191 void* dPtr = dt + 1; in FSE_buildDTable_rle()
207 void* ptr = dt; in FSE_buildDTable_raw()
209 void* dPtr = dt + 1; in FSE_buildDTable_raw()
234 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic() argument
248 FSE_initDState(&state1, &bitD, dt); in FSE_decompress_usingDTable_generic()
249 FSE_initDState(&state2, &bitD, dt); in FSE_decompress_usingDTable_generic()
[all …]
A Dfse.h245 FSE_PUBLIC_API void FSE_freeDTable(FSE_DTable* dt);
250 FSE_PUBLIC_API size_t FSE_buildDTable (FSE_DTable* dt, const short* normalizedCounter, unsigned max…
257 …singDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt);
344 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned…
347 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits);
350 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
440 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt);
600 MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState() argument
602 const void* ptr = dt; in FSE_initDState()
606 DStatePtr->table = dt + 1; in FSE_initDState()
/u-boot/arch/microblaze/lib/
A Dbootm.c42 void (*thekernel)(char *cmdline, ulong rd, ulong dt); in boot_jump_linux()
43 ulong dt = (ulong)images->ft_addr; in boot_jump_linux() local
53 cmdline, rd_start, dt); in boot_jump_linux()
69 thekernel((char *)cmdline, rd_start, dt); in boot_jump_linux()
/u-boot/scripts/dtc/
A Dlivetree.c258 add_child(dt, node); in add_orphan_node()
259 return dt; in add_orphan_node()
407 dti->dt = tree; in build_dt_info()
782 sort_node(dti->dt); in sort_tree()
801 an = get_subnode(dt, name); in build_root_node()
829 struct node *dt = dti->dt; in generate_label_tree_internal() local
911 struct node *dt = dti->dt; in generate_fixups_tree_internal() local
992 struct node *dt = dti->dt; in generate_local_fixups_tree_internal() local
1016 dti->dt, allocph); in generate_label_tree()
1024 dti->dt); in generate_fixups_tree()
[all …]
/u-boot/tools/binman/
A Dfdt_test.py34 def _DeleteProp(self, dt): argument
35 node = dt.GetNode('/microcode/update@0')
40 dt = FdtScan(fname)
41 self._DeleteProp(dt)
45 dt = FdtScan(fname)
46 node = dt.GetNode('/binman/intel-me')
/u-boot/drivers/core/
A Dofnode.c930 struct display_timing *dt) in ofnode_decode_display_timing() argument
950 memset(dt, 0, sizeof(*dt)); in ofnode_decode_display_timing()
962 dt->flags = 0; in ofnode_decode_display_timing()
985 dt->flags |= DISPLAY_FLAGS_INTERLACED; in ofnode_decode_display_timing()
987 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; in ofnode_decode_display_timing()
989 dt->flags |= DISPLAY_FLAGS_DOUBLECLK; in ofnode_decode_display_timing()
995 struct display_timing *dt) in ofnode_decode_panel_timing() argument
1004 memset(dt, 0, sizeof(*dt)); in ofnode_decode_panel_timing()
1014 dt->flags = 0; in ofnode_decode_panel_timing()
1032 dt->flags |= DISPLAY_FLAGS_INTERLACED; in ofnode_decode_panel_timing()
[all …]
/u-boot/arch/arm/dts/
A Dsama5d3_tcb1.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
A Dk3-am6548-iot2050-advanced-m2-bkey-ekey-pcie-overlay.dts14 #include <dt-bindings/phy/phy.h>
15 #include <dt-bindings/gpio/gpio.h>
A Dsama5d3_mci2.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
A Dmt8518.dtsi8 #include <dt-bindings/clock/mt8518-clk.h>
9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/interrupt-controller/irq.h>
11 #include <dt-bindings/interrupt-controller/arm-gic.h>
A Dmt8512.dtsi8 #include <dt-bindings/clock/mt8512-clk.h>
9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/interrupt-controller/irq.h>
11 #include <dt-bindings/interrupt-controller/arm-gic.h>
12 #include <dt-bindings/phy/phy.h>
A Dsama5d3_uart.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
A Dstm32mp135f-dk.dts9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/input/input.h>
11 #include <dt-bindings/leds/common.h>
A Dast2600-u-boot.dtsi2 #include <dt-bindings/clock/ast2600-clock.h>
3 #include <dt-bindings/reset/ast2600-reset.h>
A Dimx8mm-cl-iot-gate-ied-can0.dts9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/interrupt-controller/irq.h>
A Dimx8mm-cl-iot-gate-ied-can1.dts9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/interrupt-controller/irq.h>
A Dk3-am64.dtsi8 #include <dt-bindings/gpio/gpio.h>
9 #include <dt-bindings/interrupt-controller/irq.h>
10 #include <dt-bindings/interrupt-controller/arm-gic.h>
11 #include <dt-bindings/pinctrl/k3.h>
12 #include <dt-bindings/soc/ti,sci_pm_domain.h>
A Dk3-am62.dtsi8 #include <dt-bindings/gpio/gpio.h>
9 #include <dt-bindings/interrupt-controller/irq.h>
10 #include <dt-bindings/interrupt-controller/arm-gic.h>
11 #include <dt-bindings/pinctrl/k3.h>
12 #include <dt-bindings/soc/ti,sci_pm_domain.h>
/u-boot/drivers/video/bridge/
A Dssd2825.c314 struct display_timing *dt = &priv->timing; in ssd2825_setup_pll() local
323 dt->pixelclock.typ / 1000, in ssd2825_setup_pll()
351 struct display_timing *dt = &priv->timing; in ssd2825_bridge_enable_panel() local
391 dt->vsync_len.typ << 8 | dt->hsync_len.typ); in ssd2825_bridge_enable_panel()
393 (dt->vsync_len.typ + dt->vback_porch.typ) << 8 | in ssd2825_bridge_enable_panel()
394 (dt->hsync_len.typ + dt->hback_porch.typ)); in ssd2825_bridge_enable_panel()
396 dt->vfront_porch.typ << 8 | dt->hfront_porch.typ); in ssd2825_bridge_enable_panel()
398 dt->hactive.typ); in ssd2825_bridge_enable_panel()
400 dt->vactive.typ); in ssd2825_bridge_enable_panel()
/u-boot/lib/zstd/decompress/
A Dhuf_decompress.c150 void const* dt; member
164 void const* dt = DTable + 1; in HUF_DecompressAsmArgs_init() local
242 args->dt = dt; in HUF_DecompressAsmArgs_init()
426 dt[uStart] = D; in HUF_readDTableX1_wksp_bmi2()
435 dt[uStart+0] = D; in HUF_readDTableX1_wksp_bmi2()
436 dt[uStart+1] = D; in HUF_readDTableX1_wksp_bmi2()
480 BYTE const c = dt[val].byte; in HUF_decodeSymbolX1()
672 void const* dt = DTable + 1; in HUF_decompress4X1_usingDTable_internal_bmi2_asm() local
1140 return dt[val].length; in HUF_decodeSymbolX2()
1148 if (dt[val].length==1) { in HUF_decodeLastSymbolX2()
[all …]
/u-boot/board/samsung/common/
A DMakefile12 obj-y += exynos5-dt.o
13 obj-$(CONFIG_BOARD_TYPES) += exynos5-dt-types.o
/u-boot/drivers/usb/common/
A DMakefile11 obj-$(CONFIG_USB_EHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
12 obj-$(CONFIG_USB_XHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
/u-boot/drivers/video/tegra20/
A Dtegra-dc.c116 struct display_timing *dt = &priv->timing; in update_display_mode() local
124 writel(dt->hsync_len.typ | dt->vsync_len.typ << 16, &disp->sync_width); in update_display_mode()
125 writel(dt->hback_porch.typ | dt->vback_porch.typ << 16, in update_display_mode()
127 writel((dt->hfront_porch.typ - 1) | (dt->vfront_porch.typ - 1) << 16, in update_display_mode()
129 writel(dt->hactive.typ | (dt->vactive.typ << 16), &disp->disp_active); in update_display_mode()

Completed in 58 milliseconds

12345678910>>...40