Searched refs:dtc (Results 1 - 32 of 32) sorted by relevance

/linux-4.1.27/scripts/dtc/
H A DMakefile1 # scripts/dtc makefile
3 hostprogs-y := dtc
6 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
8 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
28 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
31 clean-files := dtc-lexer.lex.c dtc-parser.tab.c dtc-parser.tab.h
H A Dfstree.c21 #include "dtc.h"
H A Ddtc.c21 #include "dtc.h"
51 static const char usage_synopsis[] = "dtc [options] <input file>";
H A Ddata.c21 #include "dtc.h"
H A Dtreesource.c21 #include "dtc.h"
H A Ddtc-parser.y24 #include "dtc.h"
H A Dsrcpos.c24 #include "dtc.h"
H A Dflattree.c21 #include "dtc.h"
478 fprintf(f, "/* autogenerated by dtc, do not edit */\n\n"); dt_to_asm()
H A Dlivetree.c21 #include "dtc.h"
H A Dchecks.c21 #include "dtc.h"
/linux-4.1.27/include/linux/
H A Dlibfdt.h5 #include "../../scripts/dtc/libfdt/fdt.h"
6 #include "../../scripts/dtc/libfdt/libfdt.h"
/linux-4.1.27/drivers/of/
H A DMakefile20 CFLAGS_fdt.o = -I$(src)/../../scripts/dtc/libfdt
21 CFLAGS_fdt_address.o = -I$(src)/../../scripts/dtc/libfdt
/linux-4.1.27/arch/mips/cavium-octeon/
H A DMakefile12 CFLAGS_octeon-platform.o = -I$(src)/../../../scripts/dtc/libfdt
13 CFLAGS_setup.o = -I$(src)/../../../scripts/dtc/libfdt
/linux-4.1.27/arch/mips/mti-sead3/
H A DMakefile19 CFLAGS_sead3-setup.o = -I$(src)/../../../scripts/dtc/libfdt
/linux-4.1.27/arch/nios2/boot/
H A DMakefile41 $(call cmd,dtc)
52 $(call if_changed_dep,dtc)
/linux-4.1.27/drivers/scsi/
H A Ddtc.c29 * 2. With command line overrides - dtc=address,irq may be
62 #include "dtc.h"
102 /*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
159 printk("dtc_setup: usage dtc=address,irq\n"); dtc_setup()
173 __setup("dtc=", dtc_setup);
209 printk(KERN_DEBUG "scsi-dtc : probing address %08x\n", bases[current_base].address); dtc_detect()
220 printk(KERN_DEBUG "scsi-dtc : detected board.\n"); dtc_detect()
229 printk(KERN_DEBUG "scsi-dtc : base = %08x\n", addr); dtc_detect()
260 "dtc", instance)) { dtc_detect()
H A DMakefile96 obj-$(CONFIG_SCSI_DTC3280) += dtc.o
H A DNCR5380.c696 * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
/linux-4.1.27/drivers/dma/
H A Ddmatest.c173 struct dmatest_chan *dtc; is_threaded_test_run() local
175 list_for_each_entry(dtc, &info->channels, node) { is_threaded_test_run()
178 list_for_each_entry(thread, &dtc->threads, node) { is_threaded_test_run()
719 static void dmatest_cleanup_channel(struct dmatest_chan *dtc) dmatest_cleanup_channel() argument
725 list_for_each_entry_safe(thread, _thread, &dtc->threads, node) { dmatest_cleanup_channel()
735 dmaengine_terminate_all(dtc->chan); dmatest_cleanup_channel()
737 kfree(dtc); dmatest_cleanup_channel()
741 struct dmatest_chan *dtc, enum dma_transaction_type type) dmatest_add_threads()
745 struct dma_chan *chan = dtc->chan; dmatest_add_threads()
766 thread->chan = dtc->chan; dmatest_add_threads()
780 list_add_tail(&thread->node, &dtc->threads); dmatest_add_threads()
790 struct dmatest_chan *dtc; dmatest_add_channel() local
795 dtc = kmalloc(sizeof(struct dmatest_chan), GFP_KERNEL); dmatest_add_channel()
796 if (!dtc) { dmatest_add_channel()
801 dtc->chan = chan; dmatest_add_channel()
802 INIT_LIST_HEAD(&dtc->threads); dmatest_add_channel()
805 cnt = dmatest_add_threads(info, dtc, DMA_MEMCPY); dmatest_add_channel()
809 cnt = dmatest_add_threads(info, dtc, DMA_XOR); dmatest_add_channel()
813 cnt = dmatest_add_threads(info, dtc, DMA_PQ); dmatest_add_channel()
820 list_add_tail(&dtc->node, &info->channels); dmatest_add_channel()
885 struct dmatest_chan *dtc, *_dtc; stop_threaded_test() local
888 list_for_each_entry_safe(dtc, _dtc, &info->channels, node) { stop_threaded_test()
889 list_del(&dtc->node); stop_threaded_test()
890 chan = dtc->chan; stop_threaded_test()
891 dmatest_cleanup_channel(dtc); stop_threaded_test()
740 dmatest_add_threads(struct dmatest_info *info, struct dmatest_chan *dtc, enum dma_transaction_type type) dmatest_add_threads() argument
H A Ddma-jz4780.c94 * @dtc: transfer count (number of blocks of the transfer size specified in DCM
104 uint32_t dtc; member in struct:jz4780_dma_hwdesc
292 desc->dtc = len >> ord; jz4780_dma_setup_hwdesc()
328 desc->desc[i].dtc |= jz4780_dma_prep_slave_sg()
378 desc->desc[i].dtc |= jz4780_dma_prep_dma_cyclic()
410 desc->desc[0].dtc = len >> ord; jz4780_dma_prep_dma_memcpy()
533 residue += desc->desc[i].dtc << jzchan->transfer_shift; jz4780_dma_desc_residue()
/linux-4.1.27/scripts/
H A DMakefile38 subdir-$(CONFIG_DTC) += dtc
/linux-4.1.27/drivers/ide/
H A Dcs5536.c96 u32 dtc; cs5536_program_dtc() local
98 cs5536_read(pdev, DTC, &dtc); cs5536_program_dtc()
99 dtc &= ~(IDE_DRV_MASK << dshift); cs5536_program_dtc()
100 dtc |= tim << dshift; cs5536_program_dtc()
101 cs5536_write(pdev, DTC, dtc); cs5536_program_dtc()
/linux-4.1.27/drivers/ata/
H A Dpata_cs5536.c124 u32 dtc; cs5536_program_dtc() local
126 cs5536_read(pdev, DTC, &dtc); cs5536_program_dtc()
127 dtc &= ~(IDE_DRV_MASK << dshift); cs5536_program_dtc()
128 dtc |= tim << dshift; cs5536_program_dtc()
129 cs5536_write(pdev, DTC, dtc); cs5536_program_dtc()
/linux-4.1.27/drivers/firmware/efi/libstub/
H A DMakefile27 CFLAGS_fdt.o += -I$(srctree)/scripts/dtc/libfdt/
/linux-4.1.27/arch/powerpc/boot/
H A Dwrapper16 # -s tree.dts specify device-tree source file (needs dtc installed)
54 dtc=scripts/dtc/dtc
133 $dtc -O dtb -o "$dtb" -b 0 "$dts"
H A DMakefile149 $(addprefix $(obj)/,$(libfdt) $(libfdtheader)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
175 $(obj-libfdt): $(obj)/%.o: $(srctree)/scripts/dtc/libfdt/%.c FORCE
381 $(call if_changed_dep,dtc)
/linux-4.1.27/arch/powerpc/kernel/
H A DMakefile5 CFLAGS_prom.o = -I$(src)/../../../scripts/dtc/libfdt
/linux-4.1.27/arch/arm/boot/compressed/
H A DMakefile86 $(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
/linux-4.1.27/lib/
H A DMakefile163 $(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt))
/linux-4.1.27/arch/ia64/kernel/
H A Dmca_drv.c633 && !(ptci->itr || ptci->dtc || ptci->itc)) recover_from_tlb_check()
/linux-4.1.27/arch/ia64/include/asm/
H A Dpal.h546 dtc : 1, /* Fail in data TC */ member in struct:pal_tlb_check_info_s
728 #define pmci_tlb_data_translation_cache_fail pme_tlb.dtc
/linux-4.1.27/drivers/pinctrl/
H A Dpinctrl-tegra20.c2067 MUX_PG(dtc, RSVD1, RSVD2, VI, RSVD4, 0x14, 13, 0x84, 26, 0xa0, 22),

Completed in 635 milliseconds