| /Linux-v5.4/scripts/dtc/ |
| D | Makefile | 4 hostprogs-$(CONFIG_DTC) := dtc 7 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \ 9 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o 16 $(error dtc needs libyaml for DT schema validation support. \ 21 dtc-objs += yamltree.o 30 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
|
| D | update-dtc-source.sh | 31 DTC_UPSTREAM_PATH=`pwd`/../dtc 32 DTC_LINUX_PATH=`pwd`/scripts/dtc 42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/' 71 scripts/dtc: Update to upstream version ${dtc_version}
|
| D | Makefile.dtc | 10 dtc.c \ 22 DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
|
| D | .gitignore | 1 dtc
|
| D | dtx_diff | 34 Each DTx is processed by the dtc compiler to produce a sorted dts source 306 'export KBUILD_OUTPUT=\${dir}' or add \${dir}/scripts/dtc to \$PATH
|
| /Linux-v5.4/mm/ |
| D | page-writeback.c | 169 static bool mdtc_valid(struct dirty_throttle_control *dtc) in mdtc_valid() argument 171 return dtc->dom; in mdtc_valid() 174 static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc) in dtc_dom() argument 176 return dtc->dom; in dtc_dom() 223 static bool mdtc_valid(struct dirty_throttle_control *dtc) in mdtc_valid() argument 228 static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc) in dtc_dom() argument 393 static void domain_dirty_limits(struct dirty_throttle_control *dtc) in domain_dirty_limits() argument 395 const unsigned long available_memory = dtc->avail; in domain_dirty_limits() 396 struct dirty_throttle_control *gdtc = mdtc_gdtc(dtc); in domain_dirty_limits() 443 dtc->thresh = thresh; in domain_dirty_limits() [all …]
|
| /Linux-v5.4/drivers/dma/ |
| D | dmatest.c | 237 struct dmatest_chan *dtc; in is_threaded_test_run() local 239 list_for_each_entry(dtc, &info->channels, node) { in is_threaded_test_run() 242 list_for_each_entry(thread, &dtc->threads, node) { in is_threaded_test_run() 253 struct dmatest_chan *dtc; in is_threaded_test_pending() local 255 list_for_each_entry(dtc, &info->channels, node) { in is_threaded_test_pending() 258 list_for_each_entry(thread, &dtc->threads, node) { in is_threaded_test_pending() 913 static void dmatest_cleanup_channel(struct dmatest_chan *dtc) in dmatest_cleanup_channel() argument 919 list_for_each_entry_safe(thread, _thread, &dtc->threads, node) { in dmatest_cleanup_channel() 929 dmaengine_terminate_sync(dtc->chan); in dmatest_cleanup_channel() 931 kfree(dtc); in dmatest_cleanup_channel() [all …]
|
| D | dma-jz4780.c | 110 uint32_t dtc; member 349 desc->dtc = len >> jzchan->transfer_shift; in jz4780_dma_setup_hwdesc() 390 desc->desc[i].dtc |= in jz4780_dma_prep_slave_sg() 442 desc->desc[i].dtc |= in jz4780_dma_prep_dma_cyclic() 473 desc->desc[0].dtc = len >> jzchan->transfer_shift; in jz4780_dma_prep_dma_memcpy() 540 jzchan->desc->desc[jzchan->curr_hwdesc].dtc); in jz4780_dma_begin() 624 count += desc->desc[i].dtc & GENMASK(23, 0); in jz4780_dma_desc_residue()
|
| /Linux-v5.4/scripts/ |
| D | Makefile.lib | 190 DTC_INCLUDE := $(srctree)/scripts/dtc/include-prefixes 251 DTC ?= $(objtree)/scripts/dtc/dtc 291 cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ 292 $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ 295 -d $(depfile).dtc.tmp $(dtc-tmp) ; \ 296 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile) 299 $(call if_changed_dep,dtc,dtb) 309 $(call cmd_and_fixdep,dtc,yaml) 316 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
|
| D | Makefile | 39 subdir- += basic dtc gdb kconfig mod
|
| /Linux-v5.4/drivers/ata/ |
| D | pata_cs5536.c | 112 u32 dtc; in cs5536_program_dtc() local 114 cs5536_read(pdev, DTC, &dtc); in cs5536_program_dtc() 115 dtc &= ~(IDE_DRV_MASK << dshift); in cs5536_program_dtc() 116 dtc |= tim << dshift; in cs5536_program_dtc() 117 cs5536_write(pdev, DTC, dtc); in cs5536_program_dtc()
|
| /Linux-v5.4/drivers/ide/ |
| D | cs5536.c | 84 u32 dtc; in cs5536_program_dtc() local 86 cs5536_read(pdev, DTC, &dtc); in cs5536_program_dtc() 87 dtc &= ~(IDE_DRV_MASK << dshift); in cs5536_program_dtc() 88 dtc |= tim << dshift; in cs5536_program_dtc() 89 cs5536_write(pdev, DTC, dtc); in cs5536_program_dtc()
|
| /Linux-v5.4/drivers/of/unittest-data/ |
| D | overlay_base.dts | 10 * Do not add anything that would result in dtc creating node "/__fixups__". 11 * dtc will create nodes "/__symbols__" and "/__local_fixups__".
|
| /Linux-v5.4/arch/mips/jz4740/ |
| D | Makefile | 10 CFLAGS_setup.o = -I$(src)/../../../scripts/dtc/libfdt
|
| /Linux-v5.4/arch/powerpc/boot/ |
| D | wrapper | 58 dtc=scripts/dtc/dtc 184 $dtc -O dtb -o "$dtb" -b 0 "$dts"
|
| /Linux-v5.4/drivers/staging/pi433/Documentation/devicetree/ |
| D | pi433.txt | 55 'linux/scripts/dtc/dtc -@ -I dts -O dtb -o pi433.dtbo pi433-overlay.dts'
|
| /Linux-v5.4/arch/mips/mti-malta/ |
| D | Makefile | 20 CFLAGS_malta-dtshim.o = -I$(src)/../../../scripts/dtc/libfdt
|
| /Linux-v5.4/drivers/tty/serial/8250/ |
| D | Makefile | 41 CFLAGS_8250_ingenic.o += -I$(srctree)/scripts/dtc/libfdt
|
| /Linux-v5.4/arch/powerpc/boot/dts/ |
| D | ps3.dts | 33 * dtc expects a clock-frequency and timebase-frequency entries, so
|
| D | kuroboxHD.dts | 45 /* Following required by dtc but not used */
|
| /Linux-v5.4/Documentation/devicetree/ |
| D | dynamic-resolution-notes.txt | 11 proper dtc option and having a /plugin/ tag. This generates the
|
| D | writing-schema.rst | 94 dtc. They are simplified to make them more compact and avoid a bunch of 120 dtc must also be built with YAML output support enabled. This requires that
|
| /Linux-v5.4/drivers/firmware/efi/libstub/ |
| D | Makefile | 25 cflags-$(CONFIG_EFI_ARMSTUB) += -I$(srctree)/scripts/dtc/libfdt
|
| /Linux-v5.4/arch/arm/boot/dts/ |
| D | tegra20-trimslice.dts | 96 nvidia,pins = "dta", "dtb", "dtc", "dtd", "dte"; 203 "dtb", "dtc", "dtd", "dte", "gmb",
|
| /Linux-v5.4/arch/powerpc/boot/dts/fsl/ |
| D | gef_sbc610.dts | 14 * Compiled with dtc -I dts -O dtb -o gef_sbc610.dtb gef_sbc610.dts
|