Home
last modified time | relevance | path

Searched refs:dt (Results 1 – 200 of 731) sorted by relevance

1234

/linux-4.4.14/drivers/input/misc/
Dgp2ap002a00f.c42 static int gp2a_report(struct gp2a_data *dt) in gp2a_report() argument
44 int vo = gpio_get_value(dt->pdata->vout_gpio); in gp2a_report()
46 input_report_switch(dt->input, SW_FRONT_PROXIMITY, !vo); in gp2a_report()
47 input_sync(dt->input); in gp2a_report()
54 struct gp2a_data *dt = handle; in gp2a_irq() local
56 gp2a_report(dt); in gp2a_irq()
61 static int gp2a_enable(struct gp2a_data *dt) in gp2a_enable() argument
63 return i2c_smbus_write_byte_data(dt->i2c_client, GP2A_ADDR_OPMOD, in gp2a_enable()
67 static int gp2a_disable(struct gp2a_data *dt) in gp2a_disable() argument
69 return i2c_smbus_write_byte_data(dt->i2c_client, GP2A_ADDR_OPMOD, in gp2a_disable()
[all …]
/linux-4.4.14/drivers/rtc/
Drtc-r9701.c71 static int r9701_get_datetime(struct device *dev, struct rtc_time *dt) in r9701_get_datetime() argument
81 memset(dt, 0, sizeof(*dt)); in r9701_get_datetime()
83 dt->tm_sec = bcd2bin(buf[0]); /* RSECCNT */ in r9701_get_datetime()
84 dt->tm_min = bcd2bin(buf[1]); /* RMINCNT */ in r9701_get_datetime()
85 dt->tm_hour = bcd2bin(buf[2]); /* RHRCNT */ in r9701_get_datetime()
87 dt->tm_mday = bcd2bin(buf[3]); /* RDAYCNT */ in r9701_get_datetime()
88 dt->tm_mon = bcd2bin(buf[4]) - 1; /* RMONCNT */ in r9701_get_datetime()
89 dt->tm_year = bcd2bin(buf[5]) + 100; /* RYRCNT */ in r9701_get_datetime()
95 return rtc_valid_tm(dt); in r9701_get_datetime()
98 static int r9701_set_datetime(struct device *dev, struct rtc_time *dt) in r9701_set_datetime() argument
[all …]
Drtc-max6902.c56 static int max6902_read_time(struct device *dev, struct rtc_time *dt) in max6902_read_time() argument
70 dt->tm_sec = bcd2bin(buf[0]); in max6902_read_time()
71 dt->tm_min = bcd2bin(buf[1]); in max6902_read_time()
72 dt->tm_hour = bcd2bin(buf[2]); in max6902_read_time()
73 dt->tm_mday = bcd2bin(buf[3]); in max6902_read_time()
74 dt->tm_mon = bcd2bin(buf[4]) - 1; in max6902_read_time()
75 dt->tm_wday = bcd2bin(buf[5]); in max6902_read_time()
76 dt->tm_year = bcd2bin(buf[6]); in max6902_read_time()
85 dt->tm_year += century; in max6902_read_time()
86 dt->tm_year -= 1900; in max6902_read_time()
[all …]
Drtc-ds1347.c57 static int ds1347_read_time(struct device *dev, struct rtc_time *dt) in ds1347_read_time() argument
69 dt->tm_sec = bcd2bin(buf[0]); in ds1347_read_time()
70 dt->tm_min = bcd2bin(buf[1]); in ds1347_read_time()
71 dt->tm_hour = bcd2bin(buf[2] & 0x3F); in ds1347_read_time()
72 dt->tm_mday = bcd2bin(buf[3]); in ds1347_read_time()
73 dt->tm_mon = bcd2bin(buf[4]) - 1; in ds1347_read_time()
74 dt->tm_wday = bcd2bin(buf[5]) - 1; in ds1347_read_time()
75 dt->tm_year = bcd2bin(buf[6]) + 100; in ds1347_read_time()
77 return rtc_valid_tm(dt); in ds1347_read_time()
80 static int ds1347_set_time(struct device *dev, struct rtc_time *dt) in ds1347_set_time() argument
[all …]
Drtc-ds3234.c57 static int ds3234_read_time(struct device *dev, struct rtc_time *dt) in ds3234_read_time() argument
70 dt->tm_sec = bcd2bin(buf[0]); in ds3234_read_time()
71 dt->tm_min = bcd2bin(buf[1]); in ds3234_read_time()
72 dt->tm_hour = bcd2bin(buf[2] & 0x3f); in ds3234_read_time()
73 dt->tm_wday = bcd2bin(buf[3]) - 1; /* 0 = Sun */ in ds3234_read_time()
74 dt->tm_mday = bcd2bin(buf[4]); in ds3234_read_time()
75 dt->tm_mon = bcd2bin(buf[5] & 0x1f) - 1; /* 0 = Jan */ in ds3234_read_time()
76 dt->tm_year = bcd2bin(buf[6] & 0xff) + 100; /* Assume 20YY */ in ds3234_read_time()
78 return rtc_valid_tm(dt); in ds3234_read_time()
81 static int ds3234_set_time(struct device *dev, struct rtc_time *dt) in ds3234_set_time() argument
[all …]
Drtc-v3020.c212 static int v3020_read_time(struct device *dev, struct rtc_time *dt) in v3020_read_time() argument
222 dt->tm_sec = bcd2bin(tmp); in v3020_read_time()
224 dt->tm_min = bcd2bin(tmp); in v3020_read_time()
226 dt->tm_hour = bcd2bin(tmp); in v3020_read_time()
228 dt->tm_mday = bcd2bin(tmp); in v3020_read_time()
230 dt->tm_mon = bcd2bin(tmp) - 1; in v3020_read_time()
232 dt->tm_wday = bcd2bin(tmp); in v3020_read_time()
234 dt->tm_year = bcd2bin(tmp)+100; in v3020_read_time()
237 dev_dbg(dev, "tm_hour: %i\n", dt->tm_hour); in v3020_read_time()
238 dev_dbg(dev, "tm_min : %i\n", dt->tm_min); in v3020_read_time()
[all …]
Drtc-ds1390.c130 static int ds1390_read_time(struct device *dev, struct rtc_time *dt) in ds1390_read_time() argument
146 dt->tm_sec = bcd2bin(chip->txrx_buf[0]); in ds1390_read_time()
147 dt->tm_min = bcd2bin(chip->txrx_buf[1]); in ds1390_read_time()
148 dt->tm_hour = bcd2bin(chip->txrx_buf[2]); in ds1390_read_time()
149 dt->tm_wday = bcd2bin(chip->txrx_buf[3]); in ds1390_read_time()
150 dt->tm_mday = bcd2bin(chip->txrx_buf[4]); in ds1390_read_time()
152 dt->tm_mon = bcd2bin(chip->txrx_buf[5] & 0x7f) - 1; in ds1390_read_time()
154 dt->tm_year = bcd2bin(chip->txrx_buf[6]) + ((chip->txrx_buf[5] & 0x80) ? 100 : 0); in ds1390_read_time()
156 return rtc_valid_tm(dt); in ds1390_read_time()
159 static int ds1390_set_time(struct device *dev, struct rtc_time *dt) in ds1390_set_time() argument
[all …]
Drtc-pcf8583.c52 static int pcf8583_get_datetime(struct i2c_client *client, struct rtc_time *dt) in pcf8583_get_datetime() argument
74 dt->tm_year = buf[4] >> 6; in pcf8583_get_datetime()
75 dt->tm_wday = buf[5] >> 5; in pcf8583_get_datetime()
80 dt->tm_sec = bcd2bin(buf[1]); in pcf8583_get_datetime()
81 dt->tm_min = bcd2bin(buf[2]); in pcf8583_get_datetime()
82 dt->tm_hour = bcd2bin(buf[3]); in pcf8583_get_datetime()
83 dt->tm_mday = bcd2bin(buf[4]); in pcf8583_get_datetime()
84 dt->tm_mon = bcd2bin(buf[5]) - 1; in pcf8583_get_datetime()
90 static int pcf8583_set_datetime(struct i2c_client *client, struct rtc_time *dt, int datetoo) in pcf8583_set_datetime() argument
98 buf[3] = bin2bcd(dt->tm_sec); in pcf8583_set_datetime()
[all …]
Drtc-rx8025.c178 static int rx8025_get_time(struct device *dev, struct rtc_time *dt) in rx8025_get_time() argument
197 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); in rx8025_get_time()
198 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); in rx8025_get_time()
200 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time()
202 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time()
205 dt->tm_mday = bcd2bin(date[RX8025_REG_MDAY] & 0x3f); in rx8025_get_time()
206 dt->tm_mon = bcd2bin(date[RX8025_REG_MONTH] & 0x1f) - 1; in rx8025_get_time()
207 dt->tm_year = bcd2bin(date[RX8025_REG_YEAR]) + 100; in rx8025_get_time()
210 dt->tm_sec, dt->tm_min, dt->tm_hour, in rx8025_get_time()
211 dt->tm_mday, dt->tm_mon, dt->tm_year); in rx8025_get_time()
[all …]
Drtc-ds1343.c372 static int ds1343_read_time(struct device *dev, struct rtc_time *dt) in ds1343_read_time() argument
382 dt->tm_sec = bcd2bin(buf[0]); in ds1343_read_time()
383 dt->tm_min = bcd2bin(buf[1]); in ds1343_read_time()
384 dt->tm_hour = bcd2bin(buf[2] & 0x3F); in ds1343_read_time()
385 dt->tm_wday = bcd2bin(buf[3]) - 1; in ds1343_read_time()
386 dt->tm_mday = bcd2bin(buf[4]); in ds1343_read_time()
387 dt->tm_mon = bcd2bin(buf[5] & 0x1F) - 1; in ds1343_read_time()
388 dt->tm_year = bcd2bin(buf[6]) + 100; /* year offset from 1900 */ in ds1343_read_time()
390 return rtc_valid_tm(dt); in ds1343_read_time()
393 static int ds1343_set_time(struct device *dev, struct rtc_time *dt) in ds1343_set_time() argument
[all …]
Drtc-ds2404.c202 static int ds2404_read_time(struct device *dev, struct rtc_time *dt) in ds2404_read_time() argument
209 rtc_time_to_tm(time, dt); in ds2404_read_time()
210 return rtc_valid_tm(dt); in ds2404_read_time()
/linux-4.4.14/drivers/video/
Dvideomode.c14 void videomode_from_timing(const struct display_timing *dt, in videomode_from_timing() argument
17 vm->pixelclock = dt->pixelclock.typ; in videomode_from_timing()
18 vm->hactive = dt->hactive.typ; in videomode_from_timing()
19 vm->hfront_porch = dt->hfront_porch.typ; in videomode_from_timing()
20 vm->hback_porch = dt->hback_porch.typ; in videomode_from_timing()
21 vm->hsync_len = dt->hsync_len.typ; in videomode_from_timing()
23 vm->vactive = dt->vactive.typ; in videomode_from_timing()
24 vm->vfront_porch = dt->vfront_porch.typ; in videomode_from_timing()
25 vm->vback_porch = dt->vback_porch.typ; in videomode_from_timing()
26 vm->vsync_len = dt->vsync_len.typ; in videomode_from_timing()
[all …]
Dof_display_timing.c60 struct display_timing *dt) in of_parse_display_timing() argument
65 memset(dt, 0, sizeof(*dt)); in of_parse_display_timing()
67 ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch); in of_parse_display_timing()
68 ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch); in of_parse_display_timing()
69 ret |= parse_timing_property(np, "hactive", &dt->hactive); in of_parse_display_timing()
70 ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len); in of_parse_display_timing()
71 ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch); in of_parse_display_timing()
72 ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch); in of_parse_display_timing()
73 ret |= parse_timing_property(np, "vactive", &dt->vactive); in of_parse_display_timing()
74 ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len); in of_parse_display_timing()
[all …]
/linux-4.4.14/drivers/mtd/nand/
Ddenali_dt.c45 struct denali_dt *dt; in denali_dt_probe() local
58 dt = devm_kzalloc(&ofdev->dev, sizeof(*dt), GFP_KERNEL); in denali_dt_probe()
59 if (!dt) in denali_dt_probe()
61 denali = &dt->denali; in denali_dt_probe()
88 dt->clk = devm_clk_get(&ofdev->dev, NULL); in denali_dt_probe()
89 if (IS_ERR(dt->clk)) { in denali_dt_probe()
91 return PTR_ERR(dt->clk); in denali_dt_probe()
93 clk_prepare_enable(dt->clk); in denali_dt_probe()
99 platform_set_drvdata(ofdev, dt); in denali_dt_probe()
103 clk_disable_unprepare(dt->clk); in denali_dt_probe()
[all …]
/linux-4.4.14/drivers/bus/
Darm-ccn.c149 struct arm_ccn_dt, pmu), struct arm_ccn, dt)
189 struct arm_ccn_dt dt; member
460 return &ccn->dt.cmp_mask[i].l; in arm_ccn_pmu_get_cmp_mask()
462 return &ccn->dt.cmp_mask[i].h; in arm_ccn_pmu_get_cmp_mask()
550 return cpumap_print_to_pagebuf(true, buf, &ccn->dt.cpu); in arm_ccn_pmu_cpumask_show()
646 ccn->dt.pmu_counters_mask)) in arm_ccn_pmu_event_alloc()
650 ccn->dt.pmu_counters[CCN_IDX_PMU_CYCLE_COUNTER].event = event; in arm_ccn_pmu_event_alloc()
656 hw->idx = arm_ccn_pmu_alloc_bit(ccn->dt.pmu_counters_mask, in arm_ccn_pmu_event_alloc()
667 ccn->dt.pmu_counters[hw->idx].source = source; in arm_ccn_pmu_event_alloc()
679 clear_bit(hw->idx, ccn->dt.pmu_counters_mask); in arm_ccn_pmu_event_alloc()
[all …]
/linux-4.4.14/scripts/dtc/
Dchecks.c43 typedef void (*tree_check_fn)(struct check *c, struct node *dt);
44 typedef void (*node_check_fn)(struct check *c, struct node *dt, struct node *node);
45 typedef void (*prop_check_fn)(struct check *c, struct node *dt,
126 static void check_nodes_props(struct check *c, struct node *dt, struct node *node) in check_nodes_props() argument
133 c->node_fn(c, dt, node); in check_nodes_props()
138 c->prop_fn(c, dt, node, prop); in check_nodes_props()
142 check_nodes_props(c, dt, child); in check_nodes_props()
145 static bool run_check(struct check *c, struct node *dt) in run_check() argument
159 error = error || run_check(prq, dt); in run_check()
171 check_nodes_props(c, dt, dt); in run_check()
[all …]
/linux-4.4.14/drivers/iio/pressure/
Dms5611_core.c92 s64 off, sens, dt; in ms5611_temp_and_pressure_compensate() local
94 dt = t - (chip_info->prom[5] << 8); in ms5611_temp_and_pressure_compensate()
95 off = ((s64)chip_info->prom[2] << 16) + ((chip_info->prom[4] * dt) >> 7); in ms5611_temp_and_pressure_compensate()
96 sens = ((s64)chip_info->prom[1] << 15) + ((chip_info->prom[3] * dt) >> 8); in ms5611_temp_and_pressure_compensate()
98 t = 2000 + ((chip_info->prom[6] * dt) >> 23); in ms5611_temp_and_pressure_compensate()
102 t2 = (dt * dt) >> 31; in ms5611_temp_and_pressure_compensate()
128 s64 off, sens, dt; in ms5607_temp_and_pressure_compensate() local
130 dt = t - (chip_info->prom[5] << 8); in ms5607_temp_and_pressure_compensate()
131 off = ((s64)chip_info->prom[2] << 17) + ((chip_info->prom[4] * dt) >> 6); in ms5607_temp_and_pressure_compensate()
132 sens = ((s64)chip_info->prom[1] << 16) + ((chip_info->prom[3] * dt) >> 7); in ms5607_temp_and_pressure_compensate()
[all …]
/linux-4.4.14/drivers/clocksource/
Dtimer-digicolor.c73 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_disable() local
74 writeb(CONTROL_DISABLE, dt->base + CONTROL(dt->timer_id)); in dc_timer_disable()
79 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_enable() local
80 writeb(CONTROL_ENABLE | mode, dt->base + CONTROL(dt->timer_id)); in dc_timer_enable()
86 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_set_count() local
87 writel(count, dt->base + COUNT(dt->timer_id)); in dc_timer_set_count()
105 struct digicolor_timer *dt = dc_timer(ce); in digicolor_clkevt_set_periodic() local
108 dc_timer_set_count(ce, dt->ticks_per_jiffy); in digicolor_clkevt_set_periodic()
/linux-4.4.14/drivers/macintosh/
Dvia-pmu-led.c84 struct device_node *dt; in via_pmu_led_init() local
91 dt = of_find_node_by_path("/"); in via_pmu_led_init()
92 if (dt == NULL) in via_pmu_led_init()
94 model = of_get_property(dt, "model", NULL); in via_pmu_led_init()
96 of_node_put(dt); in via_pmu_led_init()
103 of_node_put(dt); in via_pmu_led_init()
107 of_node_put(dt); in via_pmu_led_init()
/linux-4.4.14/drivers/block/drbd/
Ddrbd_proc.c116 unsigned long db, dt, dbdt, rt, rs_total, rs_left; in drbd_syncer_progress() local
165 dt = (jiffies - device->rs_mark_time[i]) / HZ; in drbd_syncer_progress()
166 if (dt > 180) in drbd_syncer_progress()
169 if (!dt) in drbd_syncer_progress()
170 dt++; in drbd_syncer_progress()
172 rt = (dt * (rs_left / (db/100+1)))/100; /* seconds */ in drbd_syncer_progress()
177 dbdt = Bit2KB(db/dt); in drbd_syncer_progress()
185 dt = (jiffies - device->rs_mark_time[i]) / HZ; in drbd_syncer_progress()
186 if (!dt) in drbd_syncer_progress()
187 dt++; in drbd_syncer_progress()
[all …]
Ddrbd_req.c1523 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */ in request_timer_fn() local
1532 dt = rcu_dereference(device->ldev->disk_conf)->disk_timeout * HZ / 10; in request_timer_fn()
1537 et = min_not_zero(dt, ent); in request_timer_fn()
1591 if (dt && oldest_submit_jif != now && in request_timer_fn()
1592 time_after(now, oldest_submit_jif + dt) && in request_timer_fn()
1593 !time_in_range(now, device->last_reattach_jif, device->last_reattach_jif + dt)) { in request_timer_fn()
1602 dt = (dt && oldest_submit_jif != now && time_before(now, oldest_submit_jif + dt)) in request_timer_fn()
1603 ? oldest_submit_jif + dt : now + et; in request_timer_fn()
1604 nt = time_before(ent, dt) ? ent : dt; in request_timer_fn()
Ddrbd_actlog.c121 long dt; in wait_until_done_or_force_detached() local
124 dt = rcu_dereference(bdev->disk_conf)->disk_timeout; in wait_until_done_or_force_detached()
126 dt = dt * HZ / 10; in wait_until_done_or_force_detached()
127 if (dt == 0) in wait_until_done_or_force_detached()
128 dt = MAX_SCHEDULE_TIMEOUT; in wait_until_done_or_force_detached()
130 dt = wait_event_timeout(device->misc_wait, in wait_until_done_or_force_detached()
131 *done || test_bit(FORCE_DETACH, &device->flags), dt); in wait_until_done_or_force_detached()
132 if (dt == 0) { in wait_until_done_or_force_detached()
/linux-4.4.14/lib/
Ddynamic_debug.c142 struct ddebug_table *dt; in ddebug_change() local
149 list_for_each_entry(dt, &ddebug_tables, link) { in ddebug_change()
153 !match_wildcard(query->module, dt->mod_name)) in ddebug_change()
156 for (i = 0; i < dt->num_ddebugs; i++) { in ddebug_change()
157 struct _ddebug *dp = &dt->ddebugs[i]; in ddebug_change()
194 dt->mod_name, dp->function, in ddebug_change()
843 struct ddebug_table *dt; in ddebug_add_module() local
846 dt = kzalloc(sizeof(*dt), GFP_KERNEL); in ddebug_add_module()
847 if (dt == NULL) in ddebug_add_module()
851 kfree(dt); in ddebug_add_module()
[all …]
/linux-4.4.14/include/trace/events/
Dxen.h440 TP_PROTO(struct desc_struct *dt, int entrynum, u64 desc),
441 TP_ARGS(dt, entrynum, desc),
443 __field(struct desc_struct *, dt)
447 TP_fast_assign(__entry->dt = dt;
452 __entry->dt, __entry->entrynum,
457 TP_PROTO(gate_desc *dt, int entrynum, const gate_desc *ent),
458 TP_ARGS(dt, entrynum, ent),
460 __field(gate_desc *, dt)
463 TP_fast_assign(__entry->dt = dt;
467 __entry->dt, __entry->entrynum)
[all …]
/linux-4.4.14/drivers/edac/
Dsynopsys_edac.c268 enum dev_type dt; in synps_edac_get_dtype() local
276 dt = DEV_X2; in synps_edac_get_dtype()
279 dt = DEV_X4; in synps_edac_get_dtype()
282 dt = DEV_UNKNOWN; in synps_edac_get_dtype()
285 return dt; in synps_edac_get_dtype()
298 enum dev_type dt; in synps_edac_get_eccstate() local
302 dt = synps_edac_get_dtype(base); in synps_edac_get_eccstate()
303 if (dt == DEV_UNKNOWN) in synps_edac_get_eccstate()
307 if ((ecctype == SCRUB_MODE_SECDED) && (dt == DEV_X2)) in synps_edac_get_eccstate()
/linux-4.4.14/drivers/isdn/pcbit/
Dlayer2.h173 static __inline__ void pcbit_writeb(struct pcbit_dev *dev, unsigned char dt) in pcbit_writeb() argument
175 writeb(dt, dev->writeptr++); in pcbit_writeb()
180 static __inline__ void pcbit_writew(struct pcbit_dev *dev, unsigned short dt) in pcbit_writew() argument
187 writew(dt, dev->writeptr); in pcbit_writew()
191 writeb((u_char) (dt & 0x00ffU), dev->writeptr); in pcbit_writew()
193 writeb((u_char) (dt >> 8), dev->writeptr++); in pcbit_writew()
196 writew(dt, dev->writeptr); in pcbit_writew()
/linux-4.4.14/fs/coda/
Ddir.c324 unsigned int dt; in CDT2DT() local
327 case CDT_UNKNOWN: dt = DT_UNKNOWN; break; in CDT2DT()
328 case CDT_FIFO: dt = DT_FIFO; break; in CDT2DT()
329 case CDT_CHR: dt = DT_CHR; break; in CDT2DT()
330 case CDT_DIR: dt = DT_DIR; break; in CDT2DT()
331 case CDT_BLK: dt = DT_BLK; break; in CDT2DT()
332 case CDT_REG: dt = DT_REG; break; in CDT2DT()
333 case CDT_LNK: dt = DT_LNK; break; in CDT2DT()
334 case CDT_SOCK: dt = DT_SOCK; break; in CDT2DT()
335 case CDT_WHT: dt = DT_WHT; break; in CDT2DT()
[all …]
/linux-4.4.14/arch/sh/lib/
Dmemset-sh4.S26 dt r0
55 dt r3
75 dt r2
90 dt r0
102 dt r6
Dmemset.S28 dt r0
42 dt r0
53 dt r6
Dcopy_page.S105 dt r0
143 dt r6
184 dt r0
222 dt r0
241 dt r7
311 dt r2
333 dt r2
364 dt r6
D__clear_user.S35 .L0: dt r3
81 .L2: dt r3
Dmemchr.S21 dt r6
Dchecksum.S266 dt r6
327 dt r6
346 dt r6
395 dt r6
/linux-4.4.14/arch/arm/boot/dts/
Dsama5d3_tcb1.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
Dsama5d3_mci2.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
Dsama5d3_uart.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
12 #include <dt-bindings/clock/at91.h>
Dqcom-pm8841.dtsi1 #include <dt-bindings/interrupt-controller/irq.h>
2 #include <dt-bindings/spmi/spmi.h>
Dqcom-pma8084.dtsi1 #include <dt-bindings/iio/qcom,spmi-vadc.h>
2 #include <dt-bindings/interrupt-controller/irq.h>
3 #include <dt-bindings/spmi/spmi.h>
Demev2-kzm9d.dts13 #include <dt-bindings/gpio/gpio.h>
14 #include <dt-bindings/input/input.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
Dr8a7793-gose.dts13 #include <dt-bindings/gpio/gpio.h>
14 #include <dt-bindings/input/input.h>
Dbcm5301x.dtsi11 #include <dt-bindings/gpio/gpio.h>
12 #include <dt-bindings/input/input.h>
13 #include <dt-bindings/interrupt-controller/irq.h>
14 #include <dt-bindings/interrupt-controller/arm-gic.h>
Dat91sam9x5_usart3.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dat91sam9x5_macb1.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dat91sam9x5_can.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dsama5d3_can.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dqcom-pm8941.dtsi1 #include <dt-bindings/iio/qcom,spmi-vadc.h>
2 #include <dt-bindings/interrupt-controller/irq.h>
3 #include <dt-bindings/spmi/spmi.h>
Dsunxi-q8-common.dtsi43 #include <dt-bindings/gpio/gpio.h>
44 #include <dt-bindings/input/input.h>
45 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsama5d3_emac.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dsun4i-a10-pov-protab2-ips9.dts46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun4i-a10-inet1.dts46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun4i-a10-inet9f-rev03.dts46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dr8a7740-armadillo800eva.dts13 #include <dt-bindings/gpio/gpio.h>
14 #include <dt-bindings/input/input.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/pwm/pwm.h>
Dat91sam9x5_macb0.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Dat91sam9x5_isi.dtsi10 #include <dt-bindings/pinctrl/at91.h>
11 #include <dt-bindings/interrupt-controller/irq.h>
Datlas7-evb.dts13 #include <dt-bindings/input/input.h>
14 #include <dt-bindings/gpio/gpio.h>
Dsun7i-a20-pcduino3.dts48 #include <dt-bindings/gpio/gpio.h>
49 #include <dt-bindings/input/input.h>
50 #include <dt-bindings/interrupt-controller/irq.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun5i-a13-inet-98v-rev2.dts46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dmt8135.dtsi15 #include <dt-bindings/clock/mt8135-clk.h>
16 #include <dt-bindings/interrupt-controller/irq.h>
17 #include <dt-bindings/interrupt-controller/arm-gic.h>
18 #include <dt-bindings/reset-controller/mt8135-resets.h>
Dqcom-msm8960.dtsi5 #include <dt-bindings/interrupt-controller/arm-gic.h>
6 #include <dt-bindings/clock/qcom,gcc-msm8960.h>
7 #include <dt-bindings/mfd/qcom-rpm.h>
8 #include <dt-bindings/soc/qcom,gsbi.h>
Dorion5x-lacie-ethernet-disk-mini-v2.dts18 #include <dt-bindings/gpio/gpio.h>
19 #include <dt-bindings/input/input.h>
20 #include <dt-bindings/interrupt-controller/irq.h>
Dorion5x-maxtor-shared-storage-2.dts12 #include <dt-bindings/gpio/gpio.h>
13 #include <dt-bindings/input/input.h>
14 #include <dt-bindings/interrupt-controller/irq.h>
Ds3c6410-smdk6410.dts16 #include <dt-bindings/gpio/gpio.h>
17 #include <dt-bindings/interrupt-controller/irq.h>
Dsun8i-a33-sinlinx-sina33.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/input/input.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun8i-a33-ga10h-v1.1.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/input/input.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dqcom-msm8660.dtsi5 #include <dt-bindings/interrupt-controller/arm-gic.h>
6 #include <dt-bindings/clock/qcom,gcc-msm8660.h>
7 #include <dt-bindings/soc/qcom,gsbi.h>
Dsun7i-a20-olinuxino-micro.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/input/input.h>
51 #include <dt-bindings/interrupt-controller/irq.h>
52 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun5i-a13-utoo-p66.dts46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun4i-a10-gemei-g9.dts48 #include <dt-bindings/gpio/gpio.h>
49 #include <dt-bindings/input/input.h>
50 #include <dt-bindings/interrupt-controller/irq.h>
Dsun8i-a23-gt90h-v4.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/input/input.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun8i-a23-evb.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/input/input.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun7i-a20-m3.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/interrupt-controller/irq.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dorion5x-lacie-d2-network.dts12 #include <dt-bindings/gpio/gpio.h>
13 #include <dt-bindings/input/input.h>
14 #include <dt-bindings/interrupt-controller/irq.h>
Dkirkwood-blackarmor-nas220.dts11 #include <dt-bindings/gpio/gpio.h>
12 #include <dt-bindings/input/input.h>
Dmt6580.dtsi15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/interrupt-controller/arm-gic.h>
Dzx296702.dtsi3 #include <dt-bindings/clock/zx296702-clock.h>
4 #include <dt-bindings/interrupt-controller/arm-gic.h>
Dimx53-tx53-x03x.dts14 #include <dt-bindings/input/input.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/pwm/pwm.h>
Dsun7i-a20-wexler-tab7200.dts48 #include <dt-bindings/gpio/gpio.h>
49 #include <dt-bindings/input/input.h>
50 #include <dt-bindings/interrupt-controller/irq.h>
Dimx1.dtsi15 #include <dt-bindings/clock/imx1-clock.h>
16 #include <dt-bindings/gpio/gpio.h>
17 #include <dt-bindings/interrupt-controller/irq.h>
Dsun7i-a20-wits-pro-a20-dkt.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/input/input.h>
49 #include <dt-bindings/interrupt-controller/irq.h>
Dsun7i-a20-cubieboard2.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/interrupt-controller/irq.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun7i-a20-olinuxino-lime.dts50 #include <dt-bindings/gpio/gpio.h>
51 #include <dt-bindings/interrupt-controller/irq.h>
52 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun5i-a13-hsg-h702.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/input/input.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun7i-a20-olimex-som-evb.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dexynos5420-arndale-octa.dts14 #include <dt-bindings/gpio/gpio.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/input/input.h>
17 #include <dt-bindings/clock/samsung,s2mps11.h>
Dmt6592.dtsi15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/interrupt-controller/arm-gic.h>
Dkirkwood-laplug.dts11 #include <dt-bindings/gpio/gpio.h>
12 #include <dt-bindings/input/input.h>
Darmada-370-seagate-personal-cloud.dtsi19 #include <dt-bindings/gpio/gpio.h>
20 #include <dt-bindings/input/input.h>
Dimx35-eukrea-mbimxsd35-baseboard.dts16 #include <dt-bindings/gpio/gpio.h>
17 #include <dt-bindings/input/input.h>
Dmt6589.dtsi16 #include <dt-bindings/interrupt-controller/irq.h>
17 #include <dt-bindings/interrupt-controller/arm-gic.h>
Dexynos5422-odroidxu3-common.dtsi13 #include <dt-bindings/clock/samsung,s2mps11.h>
14 #include <dt-bindings/interrupt-controller/irq.h>
15 #include <dt-bindings/gpio/gpio.h>
16 #include <dt-bindings/sound/samsung-i2s.h>
Dsun5i-a13-olinuxino.dts49 #include <dt-bindings/gpio/gpio.h>
50 #include <dt-bindings/input/input.h>
51 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dsun5i-a10s-wobo-i5.dts47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
Domap2.dtsi11 #include <dt-bindings/gpio/gpio.h>
12 #include <dt-bindings/interrupt-controller/irq.h>
13 #include <dt-bindings/pinctrl/omap.h>
Dsun4i-a10-pcduino.dts48 #include <dt-bindings/gpio/gpio.h>
49 #include <dt-bindings/input/input.h>
50 #include <dt-bindings/pinctrl/sun4i-a10.h>
Dkirkwood-ns2.dts3 #include <dt-bindings/leds/leds-ns2.h>
Dkirkwood-is2.dts3 #include <dt-bindings/leds/leds-ns2.h>
Dr8a7779-marzen.dts14 #include <dt-bindings/gpio/gpio.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
Dste-nomadik-nhk15.dts7 #include <dt-bindings/interrupt-controller/irq.h>
8 #include <dt-bindings/gpio/gpio.h>
Dbcm63138.dtsi5 #include <dt-bindings/interrupt-controller/arm-gic.h>
6 #include <dt-bindings/interrupt-controller/irq.h>
Dimx25-eukrea-mbimxsd25-baseboard.dts16 #include <dt-bindings/gpio/gpio.h>
17 #include <dt-bindings/input/input.h>
Dexynos4412-tmu-sensor-conf.dtsi12 #include <dt-bindings/thermal/thermal_exynos.h>
Dexynos5440-tmu-sensor-conf.dtsi12 #include <dt-bindings/thermal/thermal_exynos.h>
Domap5-gpu-thermal.dtsi12 #include <dt-bindings/thermal/thermal.h>
Domap5-core-thermal.dtsi12 #include <dt-bindings/thermal/thermal.h>
Dam437x-idk-evm.dts12 #include <dt-bindings/pinctrl/am43xx.h>
13 #include <dt-bindings/pwm/pwm.h>
14 #include <dt-bindings/gpio/gpio.h>
15 #include <dt-bindings/input/input.h>
Dkirkwood-ns2max.dts3 #include <dt-bindings/leds/leds-ns2.h>
Dwm8850-w70v2.dts14 #include <dt-bindings/pwm/pwm.h>
Dr8a7778-bockw.dts19 #include <dt-bindings/interrupt-controller/irq.h>
20 #include <dt-bindings/gpio/gpio.h>
Dqcom-apq8064-cm-qs600.dts2 #include <dt-bindings/gpio/gpio.h>
3 #include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
/linux-4.4.14/drivers/iio/common/ms_sensors/
Dms_sensors_i2c.c579 s32 dt, temp; in ms_sensors_read_temp_and_pressure() local
607 dt = (s32)t_adc - (prom[5] << 8); in ms_sensors_read_temp_and_pressure()
610 temp = 2000 + (((s64)dt * prom[6]) >> 23); in ms_sensors_read_temp_and_pressure()
616 t2 = (3 * ((s64)dt * (s64)dt)) >> 33; in ms_sensors_read_temp_and_pressure()
627 t2 = (5 * ((s64)dt * (s64)dt)) >> 38; in ms_sensors_read_temp_and_pressure()
633 off = (((s64)prom[2]) << 17) + ((((s64)prom[4]) * (s64)dt) >> 6); in ms_sensors_read_temp_and_pressure()
637 sens = (((s64)prom[1]) << 16) + (((s64)prom[3] * dt) >> 7); in ms_sensors_read_temp_and_pressure()
/linux-4.4.14/arch/ia64/sn/kernel/
Dpio_phys.S29 rsm psr.i | psr.dt
44 rsm psr.i | psr.dt
60 rsm psr.i | psr.dt | psr.ic
/linux-4.4.14/fs/exofs/
Dsuper.c473 struct exofs_device_table *dt) in _read_and_match_data_map() argument
478 le64_to_cpu(dt->dt_data_map.cb_stripe_unit); in _read_and_match_data_map()
480 le32_to_cpu(dt->dt_data_map.cb_group_width); in _read_and_match_data_map()
482 le32_to_cpu(dt->dt_data_map.cb_group_depth); in _read_and_match_data_map()
484 le32_to_cpu(dt->dt_data_map.cb_mirror_cnt) + 1; in _read_and_match_data_map()
486 le32_to_cpu(dt->dt_data_map.cb_raid_algorithm); in _read_and_match_data_map()
578 struct exofs_device_table *dt; in exofs_read_lookup_dev_table() local
580 unsigned table_bytes = table_count * sizeof(dt->dt_dev_table[0]) + in exofs_read_lookup_dev_table()
581 sizeof(*dt); in exofs_read_lookup_dev_table()
585 dt = kmalloc(table_bytes, GFP_KERNEL); in exofs_read_lookup_dev_table()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dti,dp83867.txt5 - ti,rx-internal-delay - RGMII Recieve Clock Delay - see dt-bindings/net/ti-dp83867.h
7 - ti,tx-internal-delay - RGMII Transmit Clock Delay - see dt-bindings/net/ti-dp83867.h
9 - ti,fifo-depth - Transmitt FIFO depth- see dt-bindings/net/ti-dp83867.h
/linux-4.4.14/arch/x86/kernel/
Ddevicetree.c272 void *dt; in x86_flattree_get_config() local
279 initial_boot_params = dt = early_memremap(initial_dtb, map_len); in x86_flattree_get_config()
282 early_memunmap(dt, map_len); in x86_flattree_get_config()
283 initial_boot_params = dt = early_memremap(initial_dtb, size); in x86_flattree_get_config()
288 early_memunmap(dt, map_len); in x86_flattree_get_config()
/linux-4.4.14/include/video/
Dof_display_timing.h20 struct display_timing *dt);
25 struct display_timing *dt) in of_get_display_timing() argument
Dvideomode.h43 void videomode_from_timing(const struct display_timing *dt,
Dmetronomefb.h35 int dt; member
/linux-4.4.14/sound/soc/dwc/
Ddesignware_i2s.c88 struct snd_dmaengine_dai_dma_data dt; member
554 dev->play_dma_data.dt.addr = res->start + I2S_TXDMA; in dw_configure_dai_by_dt()
555 dev->play_dma_data.dt.addr_width = bus_widths[idx]; in dw_configure_dai_by_dt()
556 dev->play_dma_data.dt.chan_name = "TX"; in dw_configure_dai_by_dt()
557 dev->play_dma_data.dt.fifo_size = fifo_depth * in dw_configure_dai_by_dt()
559 dev->play_dma_data.dt.maxburst = 16; in dw_configure_dai_by_dt()
565 dev->capture_dma_data.dt.addr = res->start + I2S_RXDMA; in dw_configure_dai_by_dt()
566 dev->capture_dma_data.dt.addr_width = bus_widths[idx]; in dw_configure_dai_by_dt()
567 dev->capture_dma_data.dt.chan_name = "RX"; in dw_configure_dai_by_dt()
568 dev->capture_dma_data.dt.fifo_size = fifo_depth * in dw_configure_dai_by_dt()
[all …]
/linux-4.4.14/arch/metag/kernel/
Ddevtree.c57 const struct machine_desc * __init setup_machine_fdt(void *dt) in setup_machine_fdt() argument
62 if (!early_init_dt_scan(dt)) in setup_machine_fdt()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dgddr5.c38 int WL, CL, WR, at[2], dt, ds; in nvkm_gddr5_calc() local
63 dt = ram->next->bios.timing_20_2e_03; in nvkm_gddr5_calc()
83 ram->mr[1] |= (dt & 0x03) << 2; in nvkm_gddr5_calc()
/linux-4.4.14/arch/arm64/boot/dts/qcom/
Dpm8916.dtsi1 #include <dt-bindings/iio/qcom,spmi-vadc.h>
2 #include <dt-bindings/interrupt-controller/irq.h>
3 #include <dt-bindings/spmi/spmi.h>
Dapq8016-sbc-soc-pins.dtsi2 #include <dt-bindings/gpio/gpio.h>
Dapq8016-sbc-pmic-pins.dtsi1 #include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
/linux-4.4.14/arch/arc/kernel/
Ddevtree.c64 const struct machine_desc * __init setup_machine_fdt(void *dt) in setup_machine_fdt() argument
71 if (!early_init_dt_scan(dt)) in setup_machine_fdt()
/linux-4.4.14/arch/sh/boards/mach-ecovec24/
Dsdram.S73 dt r0
90 dt r0
/linux-4.4.14/Documentation/devicetree/bindings/mtd/
Ddenali-nand.txt4 - compatible : should be "denali,denali-nand-dt"
18 compatible = "denali,denali-nand-dt";
/linux-4.4.14/arch/arm/mach-imx/
DMakefile41 obj-$(CONFIG_MACH_IMX1_DT) += imx1-dt.o
51 obj-$(CONFIG_MACH_IMX27_DT) += imx27-dt.o
66 obj-$(CONFIG_MACH_IMX31_DT) += imx31-dt.o
72 obj-$(CONFIG_MACH_IMX35_DT) += imx35-dt.o
/linux-4.4.14/arch/x86/include/asm/
Ddesc.h104 #define write_ldt_entry(dt, entry, desc) native_write_ldt_entry(dt, entry, desc) argument
105 #define write_gdt_entry(dt, entry, desc, type) native_write_gdt_entry(dt, entry, desc, type) argument
106 #define write_idt_entry(dt, entry, g) native_write_idt_entry(dt, entry, g) argument
Dkvm_emulate.h197 void (*get_gdt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
198 void (*get_idt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
199 void (*set_gdt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
200 void (*set_idt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
Dparavirt.h262 static inline void write_ldt_entry(struct desc_struct *dt, int entry, in write_ldt_entry() argument
265 PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc); in write_ldt_entry()
268 static inline void write_gdt_entry(struct desc_struct *dt, int entry, in write_gdt_entry() argument
271 PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type); in write_gdt_entry()
274 static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g) in write_idt_entry() argument
276 PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g); in write_idt_entry()
/linux-4.4.14/arch/arm/plat-pxa/
Ddma.c201 void *dt; in pxa_dma_dbg_alloc_chan() local
205 dt = (void *)ch; in pxa_dma_dbg_alloc_chan()
208 chan_state = debugfs_create_file("state", 0400, chan, dt, in pxa_dma_dbg_alloc_chan()
211 chan_descr = debugfs_create_file("descriptors", 0400, chan, dt, in pxa_dma_dbg_alloc_chan()
214 chan_reqs = debugfs_create_file("requesters", 0400, chan, dt, in pxa_dma_dbg_alloc_chan()
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dalphascale,acc.txt13 It is encouraged to use dt-binding for clock index definitions. SoC specific
14 dt-binding should be included to the device tree descriptor. For example
16 #include <dt-bindings/clock/alphascale,asm9260.h>
Dimx6q-clock.txt10 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx6qdl-clock.h
15 #include <dt-bindings/clock/imx6qdl-clock.h>
Dclk-palmas-clk32kg-clocks.txt22 dt-bindings/mfd/palmas.h
25 #include <dt-bindings/mfd/palmas.h>
Dpistachio-clock.txt27 See dt-bindings/clock/pistachio-clk.h for the list of valid identifiers.
56 See dt-bindings/clock/pistachio-clk.h for the list of valid identifiers.
84 See dt-bindings/clock/pistachio-clk.h for the list of valid identifiers.
113 See dt-bindings/clock/pistachio-clk.h for the list of valid identifiers.
Drockchip,rk3188-cru.txt23 preprocessor macros in the dt-bindings/clock/rk3188-cru.h and
24 dt-bindings/clock/rk3066-cru.h headers and can be used in device tree sources.
Dimx6sl-clock.txt9 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx6sl-clock.h
Dclps711x-clock.txt10 ID in its "clocks" phandle cell. See include/dt-bindings/clock/clps711x-clock.h
Dimx7d-clock.txt12 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx7d-clock.h
Dimx6ul-clock.txt12 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx6ul-clock.h
Dlsi,axm5516-clks.txt10 phandle cell. See <dt-bindings/clock/lsi,axxia-clock.h> for the list of
Dhi3620-clock.txt20 All these identifier could be found in <dt-bindings/clock/hi3620-clock.h>.
Dimx6sx-clock.txt12 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx6sx-clock.h
/linux-4.4.14/drivers/iommu/
Drockchip-iommu.c80 u32 *dt; /* page directory table */ member
521 dte = rk_domain->dt[rk_iova_dte_index(iova)]; in rk_iommu_iova_to_phys()
572 dte_addr = &rk_domain->dt[rk_iova_dte_index(iova)]; in rk_dte_get_page_table()
708 dte = rk_domain->dt[rk_iova_dte_index(iova)]; in rk_iommu_unmap()
775 dte_addr = virt_to_phys(rk_domain->dt); in rk_iommu_attach_device()
841 rk_domain->dt = (u32 *)get_zeroed_page(GFP_KERNEL | GFP_DMA32); in rk_iommu_domain_alloc()
842 if (!rk_domain->dt) in rk_iommu_domain_alloc()
845 rk_table_flush(rk_domain->dt, NUM_DT_ENTRIES); in rk_iommu_domain_alloc()
866 u32 dte = rk_domain->dt[i]; in rk_iommu_domain_free()
874 free_page((unsigned long)rk_domain->dt); in rk_iommu_domain_free()
/linux-4.4.14/Documentation/devicetree/bindings/arm/mediatek/
Dmediatek,pericfg.txt17 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
21 dt-bindings/reset-controller/mt*-resets.h
Dmediatek,infracfg.txt17 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
21 dt-bindings/reset-controller/mt*-resets.h
Dmediatek,vencltsys.txt14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,apmixedsys.txt15 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,topckgen.txt15 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,imgsys.txt14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,vdecsys.txt14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,vencsys.txt14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
Dmediatek,mmsys.txt14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
/linux-4.4.14/arch/arm/mach-mmp/
DMakefile33 obj-$(CONFIG_MACH_MMP_DT) += mmp-dt.o
34 obj-$(CONFIG_MACH_MMP2_DT) += mmp2-dt.o
/linux-4.4.14/arch/x86/xen/
Denlighten.c744 static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum, in xen_write_ldt_entry() argument
747 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]); in xen_write_ldt_entry()
750 trace_xen_cpu_write_ldt_entry(dt, entrynum, entry); in xen_write_ldt_entry()
824 static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g) in xen_write_idt_entry() argument
826 unsigned long p = (unsigned long)&dt[entrynum]; in xen_write_idt_entry()
829 trace_xen_cpu_write_idt_entry(dt, entrynum, g); in xen_write_idt_entry()
838 native_write_idt_entry(dt, entrynum, g); in xen_write_idt_entry()
902 static void xen_write_gdt_entry(struct desc_struct *dt, int entry, in xen_write_gdt_entry() argument
905 trace_xen_cpu_write_gdt_entry(dt, entry, desc, type); in xen_write_gdt_entry()
916 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]); in xen_write_gdt_entry()
[all …]
/linux-4.4.14/drivers/clk/rockchip/
Dclk.h280 df, dt, go, gs, gf) \ argument
292 .div_table = dt, \
336 mw, mf, ds, dw, df, dt) \ argument
351 .div_table = dt, \
402 #define DIVTBL(_id, cname, pname, f, o, s, w, df, dt) \ argument
414 .div_table = dt, \
/linux-4.4.14/drivers/scsi/
Dch.c112 struct scsi_device **dt; /* ptrs to data transfer elements */ member
359 ch->dt = kcalloc(ch->counts[CHET_DT], sizeof(*ch->dt), in ch_readconfig()
362 if (!ch->dt) { in ch_readconfig()
383 ch->dt[elem] = NULL; in ch_readconfig()
386 ch->dt[elem] = NULL; in ch_readconfig()
396 ch->dt[elem] = in ch_readconfig()
400 if (!ch->dt[elem]) { in ch_readconfig()
405 ch->dt[elem]->vendor, in ch_readconfig()
406 ch->dt[elem]->model, in ch_readconfig()
407 ch->dt[elem]->rev); in ch_readconfig()
[all …]
/linux-4.4.14/arch/cris/boot/dts/
Dp1343.dts3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/input/input.h>
/linux-4.4.14/arch/sh/boards/mach-se/7724/
Dsdram.S90 dt r0
107 dt r0
/linux-4.4.14/arch/mips/include/asm/netlogic/xlp-hal/
Dpic.h229 int sch, int vec, int dt, int db, int cpu) in nlm_9xx_pic_write_irt() argument
235 ((dt & 0x1) << 21) | (0 /*ptr*/ << 16) | in nlm_9xx_pic_write_irt()
243 int sch, int vec, int dt, int db, int dte) in nlm_pic_write_irt() argument
249 ((dt & 0x1) << 19) | ((db & 0x7) << 16) | in nlm_pic_write_irt()
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/
Dqcom,gsbi.txt15 Please reference dt-bindings/soc/qcom,gsbi.h for valid mux values.
19 dt-bindings/soc/qcom,gsbi.h for valid CRCI mux values.
41 #include <dt-bindings/soc/qcom,gsbi.h>
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic79xx_osm.c2412 unsigned int dt; in ahd_linux_set_period() local
2434 dt = ppr_options & MSG_EXT_PPR_DT_REQ; in ahd_linux_set_period()
2446 dt ? AHD_SYNCRATE_MAX : AHD_SYNCRATE_ULTRA2); in ahd_linux_set_period()
2466 unsigned int dt = ppr_options & MSG_EXT_PPR_DT_REQ; in ahd_linux_set_offset() local
2480 dt ? AHD_SYNCRATE_MAX : AHD_SYNCRATE_ULTRA2); in ahd_linux_set_offset()
2489 static void ahd_linux_set_dt(struct scsi_target *starget, int dt) in ahd_linux_set_dt() argument
2508 dt ? "enabling" : "disabling"); in ahd_linux_set_dt()
2510 if (dt && spi_max_width(starget)) { in ahd_linux_set_dt()
2523 dt ? AHD_SYNCRATE_MAX : AHD_SYNCRATE_ULTRA2); in ahd_linux_set_dt()
2544 unsigned int dt; in ahd_linux_set_qas() local
[all …]
/linux-4.4.14/drivers/media/rc/
Dsunxi-cir.c103 unsigned char dt; in sunxi_ir_irq() local
123 dt = readb(ir->base + SUNXI_IR_RXFIFO_REG); in sunxi_ir_irq()
124 rawir.pulse = (dt & 0x80) != 0; in sunxi_ir_irq()
125 rawir.duration = ((dt & 0x7f) + 1) * SUNXI_IR_SAMPLE; in sunxi_ir_irq()
/linux-4.4.14/arch/mips/alchemy/common/
Dclock.c364 int *dt; /* dividertable for csrc */ member
882 return parent_rate / c->dt[v]; in alchemy_clk_csrc_recalc()
898 if ((d == 3) && (c->dt[2] != 3)) in alchemy_clk_csrc_setr()
902 if (c->dt[i] == d) in alchemy_clk_csrc_setr()
922 int scale = c->dt[2] == 3 ? 1 : 2; /* au1300 check */ in alchemy_clk_csrc_detr()
954 int i, ret, *dt; in alchemy_clk_setup_imux() local
962 dt = alchemy_csrc_dt1; in alchemy_clk_setup_imux()
980 dt = alchemy_csrc_dt2; in alchemy_clk_setup_imux()
1002 a->dt = dt; in alchemy_clk_setup_imux()
/linux-4.4.14/arch/mips/boot/dts/qca/
Dar9132_tl_wr1043nd_v1.dts3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/input/input.h>
/linux-4.4.14/tools/perf/
Dbuiltin-buildid-cache.c43 char dt[32]; in build_id_cache__kcore_dir() local
48 if (!strftime(dt, sizeof(dt), "%Y%m%d%H%M%S", &tm)) in build_id_cache__kcore_dir()
51 scnprintf(dir, sz, "%s%02u", dt, (unsigned)tv.tv_usec / 10000); in build_id_cache__kcore_dir()
/linux-4.4.14/Documentation/devicetree/bindings/soc/rockchip/
Dpower_domain.txt16 "include/dt-bindings/power/rk3288-power.h" - for RK3288 type power domain.
38 "include/dt-bindings/power/rk3288-power.h" - for rk3288 type power domain.
/linux-4.4.14/Documentation/devicetree/bindings/reset/
Dst,sti-softreset.txt45 include/dt-bindings/reset/stih415-resets.h
46 include/dt-bindings/reset/stih416-resets.h
Dst,sti-powerdown.txt46 include/dt-bindings/reset/stih415-resets.h
47 include/dt-bindings/reset/stih416-resets.h
/linux-4.4.14/arch/arm/mach-lpc18xx/
DMakefile1 obj-y += board-dt.o
/linux-4.4.14/arch/arm/mach-stm32/
DMakefile1 obj-y += board-dt.o
/linux-4.4.14/arch/metag/include/asm/
Dsetup.h6 extern const struct machine_desc *setup_machine_fdt(void *dt);
/linux-4.4.14/block/partitions/
Damiga.c119 __be32 *dt = (__be32 *)dostype; in amiga_partition() local
120 *dt = pb->pb_Environment[16]; in amiga_partition()
/linux-4.4.14/drivers/s390/crypto/
Dap_bus.h235 #define AP_DEVICE(dt) \ argument
236 .dev_type=(dt), \
/linux-4.4.14/Documentation/
Dphy.txt31 dt boot case.
41 arguments. For the dt boot case, all PHY providers should use one of the above
83 be used to get the PHY. In the case of dt boot, the string arguments
84 should contain the phy name as given in the dt data and in the case of
85 non-dt boot, it should contain the label of the PHY. The two
156 The documentation for PHY dt binding can be found @
/linux-4.4.14/drivers/video/fbdev/
Dmetronomefb.c187 epd_frame_table[par->dt].wfm_size = user_wfm_size; in load_waveform()
189 if (size != epd_frame_table[par->dt].wfm_size) { in load_waveform()
191 epd_frame_table[par->dt].wfm_size); in load_waveform()
376 memcpy(par->metromem_cmd->args, epd_frame_table[par->dt].config, in metronome_config_cmd()
377 sizeof(epd_frame_table[par->dt].config)); in metronome_config_cmd()
649 par->dt = epd_dt_index; in metronomefb_probe()
/linux-4.4.14/arch/arm/mach-sti/
DMakefile2 obj-$(CONFIG_ARCH_STI) += board-dt.o
/linux-4.4.14/arch/ia64/include/asm/native/
Dinst.h113 rsm psr.dt
119 ssm psr.dt \
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dti,drv260x.txt10 - mode - Power up mode of the chip (defined in include/dt-bindings/input/ti-drv260x.h)
18 (defined in include/dt-bindings/input/ti-drv260x.h)
/linux-4.4.14/Documentation/RCU/
Dtrace.txt59 …0!c=30455 g=30456 cnq=1/0:1 dt=126535/140000000000000/0 df=2002 of=4 ql=0/0 qs=N... b=10 ci=74572 …
60 …1!c=30719 g=30720 cnq=1/0:0 dt=132007/140000000000000/0 df=1874 of=10 ql=0/0 qs=N... b=10 ci=12320…
61 …2!c=30150 g=30151 cnq=1/1:1 dt=138537/140000000000000/0 df=1707 of=8 ql=0/0 qs=N... b=10 ci=80132 …
62 …3 c=31249 g=31250 cnq=1/1:0 dt=107255/140000000000000/0 df=1749 of=6 ql=0/450 qs=NRW. b=10 ci=1517…
63 …4!c=29502 g=29503 cnq=1/0:1 dt=83647/140000000000000/0 df=965 of=5 ql=0/0 qs=N... b=10 ci=65643 nc…
64 …5 c=31201 g=31202 cnq=1/0:1 dt=70422/0/0 df=535 of=7 ql=0/0 qs=.... b=10 ci=58500 nci=0 co=764 ca=…
65 …6!c=30253 g=30254 cnq=1/0:1 dt=95363/140000000000000/0 df=780 of=5 ql=0/0 qs=N... b=10 ci=100607 n…
66 …7 c=31178 g=31178 cnq=1/0:0 dt=91536/0/0 df=547 of=4 ql=0/0 qs=.... b=10 ci=109819 nci=0 co=1115 c…
105 o "dt" is the current value of the dyntick counter that is incremented
191 …0!c=12865 g=12866 cnq=1/0:1 dt=83113/140000000000000/0 df=288 of=11 ql=0/0 qs=N... kt=0/O ktl=944 …
[all …]
/linux-4.4.14/arch/arc/include/asm/
Dmach_desc.h68 extern const struct machine_desc *setup_machine_fdt(void *dt);
/linux-4.4.14/arch/x86/lguest/
Dboot.c289 static void lguest_write_idt_entry(gate_desc *dt, in lguest_write_idt_entry() argument
300 native_write_idt_entry(dt, entrynum, g); in lguest_write_idt_entry()
344 static void lguest_write_gdt_entry(struct desc_struct *dt, int entrynum, in lguest_write_gdt_entry() argument
347 native_write_gdt_entry(dt, entrynum, desc, type); in lguest_write_gdt_entry()
350 dt[entrynum].a, dt[entrynum].b, 0); in lguest_write_gdt_entry()
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dmips-gic.txt14 See <include/dt-bindings/interrupt-controller/mips-gic.h>.
17 See <include/dt-bindings/interrupt-controller/irq.h> for a list of valid
/linux-4.4.14/arch/arm/mach-realview/
DMakefile6 obj-$(CONFIG_REALVIEW_DT) += realview-dt.o
/linux-4.4.14/arch/mips/netlogic/xlp/
DMakefile1 obj-y += setup.o nlm_hal.o cop2-ex.o dt.o
/linux-4.4.14/include/scsi/
Dscsi_transport_spi.h40 unsigned int dt:1; /* DT clocking enabled */ member
83 #define spi_dt(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dt)
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-tz1090.txt28 - GPIO flags: bit field of flags, as defined in <dt-bindings/gpio/gpio.h>.
50 <dt-bindings/interrupt-controller/irq.h>. Only the following flags are
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-mt65xx.txt25 - Flags: bit field of flags, as defined in <dt-bindings/gpio/gpio.h>.
65 See dt-bindings/pinctrl/mt65xx.h.
68 MTK_DRIVE_4mA, MTK_DRIVE_6mA, etc. See dt-bindings/pinctrl/mt65xx.h.
/linux-4.4.14/crypto/
Dansi_cprng.c374 const u8 *dt = NULL; in cprng_reset() local
380 dt = key + DEFAULT_PRNG_KSZ; in cprng_reset()
382 reset_prng_context(prng, key, DEFAULT_PRNG_KSZ, seed, dt); in cprng_reset()
/linux-4.4.14/arch/arm64/boot/dts/mediatek/
Dmt8173.dtsi14 #include <dt-bindings/clock/mt8173-clk.h>
15 #include <dt-bindings/interrupt-controller/irq.h>
16 #include <dt-bindings/interrupt-controller/arm-gic.h>
17 #include <dt-bindings/power/mt8173-power.h>
18 #include <dt-bindings/reset-controller/mt8173-resets.h>
Dmt6795.dtsi14 #include <dt-bindings/interrupt-controller/irq.h>
15 #include <dt-bindings/interrupt-controller/arm-gic.h>
/linux-4.4.14/drivers/block/paride/
Dpf.c627 int dt, s; in pf_identify() local
638 dt = buf[0] & 0x1f; in pf_identify()
639 if ((dt != 0) && (dt != 7)) { in pf_identify()
642 pf->name, pf->drive, pf->lun, dt); in pf_identify()
658 pf->name, mf, id, ms[pf->drive], pf->lun, dt); in pf_identify()
/linux-4.4.14/arch/mips/mti-malta/
DMakefile9 obj-y += malta-dt.o
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Das3722.txt12 of AS3722 are defined at dt-bindings/mfd/as3722.h
14 interrupts.txt, using dt-bindings/irq.
118 are defined @dt-bindings/mfd/as3722.h
134 #include <dt-bindings/mfd/as3722.h>
/linux-4.4.14/Documentation/devicetree/bindings/regulator/
Dpalmas-pmic.txt15 arch/arm/boot/dts/include/dt-bindings/interrupt-controller/irq.h
51 #include <dt-bindings/interrupt-controller/irq.h>
/linux-4.4.14/drivers/staging/iio/meter/
DKconfig11 Metering IC with di/dt Sensor Interface.
43 Metering IC with di/dt Sensor Interface.
/linux-4.4.14/arch/arm/mach-pxa/
DMakefile22 obj-$(CONFIG_MACH_PXA3XX_DT) += pxa-dt.o
23 obj-$(CONFIG_MACH_PXA27X_DT) += pxa-dt.o
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
Dsym_glue.c940 tp->tgoal.iu = tp->tgoal.dt = in sym_exec_user_command()
946 tp->tgoal.iu = tp->tgoal.dt = in sym_exec_user_command()
954 tp->tgoal.iu = tp->tgoal.dt = in sym_exec_user_command()
1922 tp->tgoal.dt = 1; in sym2_set_period()
1937 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; in sym2_set_width()
1943 static void sym2_set_dt(struct scsi_target *starget, int dt) in sym2_set_dt() argument
1950 if (dt) in sym2_set_dt()
1951 tp->tgoal.dt = 1; in sym2_set_dt()
1953 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; in sym2_set_dt()
1965 tp->tgoal.iu = tp->tgoal.dt = 1;
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/thermal/
Dthermal.txt129 Refer to include/dt-bindings/thermal/thermal.h for definition of this constant.
178 Note: The delay properties are bound to the maximum dT/dt (temperature
184 The maximum dT/dt is highly bound to hardware power consumption and dissipation
185 capability. The delays should be chosen to account for said max dT/dt,
208 #include <dt-bindings/thermal/thermal.h>
326 #include <dt-bindings/thermal/thermal.h>
434 may be uncorrelated, having its own dT/dt requirements, trips
443 #include <dt-bindings/thermal/thermal.h>
512 #include <dt-bindings/thermal/thermal.h>
/linux-4.4.14/include/uapi/linux/
Dgfs2_ondisk.h213 #define DT2IF(dt) (((dt) << 12) & S_IFMT) argument

1234