Home
last modified time | relevance | path

Searched refs:mt (Results 1 – 98 of 98) sorted by relevance

/linux-4.4.14/drivers/input/
Dinput-mt.c44 struct input_mt *mt = dev->mt; in input_mt_init_slots() local
49 if (mt) in input_mt_init_slots()
50 return mt->num_slots != num_slots ? -EINVAL : 0; in input_mt_init_slots()
52 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL); in input_mt_init_slots()
53 if (!mt) in input_mt_init_slots()
56 mt->num_slots = num_slots; in input_mt_init_slots()
57 mt->flags = flags; in input_mt_init_slots()
86 mt->red = kcalloc(n2, sizeof(*mt->red), GFP_KERNEL); in input_mt_init_slots()
87 if (!mt->red) in input_mt_init_slots()
93 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1); in input_mt_init_slots()
[all …]
Dinput.c218 struct input_mt *mt = dev->mt; in input_handle_abs_event() local
227 if (mt && *pval >= 0 && *pval < mt->num_slots) in input_handle_abs_event()
228 mt->slot = *pval; in input_handle_abs_event()
237 } else if (mt) { in input_handle_abs_event()
238 pold = &mt->slots[mt->slot].abs[code - ABS_MT_FIRST]; in input_handle_abs_event()
257 if (is_mt_event && mt && mt->slot != input_abs_get_val(dev, ABS_MT_SLOT)) { in input_handle_abs_event()
258 input_abs_set_val(dev, ABS_MT_SLOT, mt->slot); in input_handle_abs_event()
391 v->value = dev->mt->slot; in input_handle_event()
1969 if (dev->mt) { in input_estimate_events_per_packet()
1970 mt_slots = dev->mt->num_slots; in input_estimate_events_per_packet()
DMakefile8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
Devdev.c953 const struct input_mt *mt = dev->mt; in evdev_handle_mt_request() local
960 if (!mt || !input_is_mt_value(code)) in evdev_handle_mt_request()
964 for (i = 0; i < mt->num_slots && i < max_slots; i++) { in evdev_handle_mt_request()
965 int value = input_mt_get_value(&mt->slots[i], code); in evdev_handle_mt_request()
/linux-4.4.14/drivers/video/fbdev/matrox/
Dmatroxfb_g450.c237 struct my_timming *mt, const struct output_desc *outd) in computeRegs() argument
252 hvis = ((mt->HDisplay << 1) + 3) & ~3; in computeRegs()
265 mt->mnp = mnp; in computeRegs()
266 mt->pixclock = g450_mnp2f(minfo, mnp); in computeRegs()
270 pixclock = 1000000000U / mt->pixclock; in computeRegs()
275 do_div(piic, mt->pixclock); in computeRegs()
322 mt->interlaced = 1; in computeRegs()
324 mt->HDisplay = hvis & ~7; in computeRegs()
325 mt->HSyncStart = mt->HDisplay + 8; in computeRegs()
326 mt->HSyncEnd = (hlen & ~7) - 8; in computeRegs()
[all …]
Dmatroxfb_maven.c755 struct my_timming* mt, in maven_compute_timming() argument
771 if (maven_find_exact_clocks(mt->HTotal, mt->VTotal, m) == 0) in maven_compute_timming()
774 lmargin = mt->HTotal - mt->HSyncEnd; in maven_compute_timming()
775 slen = mt->HSyncEnd - mt->HSyncStart; in maven_compute_timming()
776 hcrt = mt->HTotal - slen - mt->delay; in maven_compute_timming()
777 umargin = mt->VTotal - mt->VSyncEnd; in maven_compute_timming()
778 vslen = mt->VSyncEnd - mt->VSyncStart; in maven_compute_timming()
780 if (m->hcorr < mt->HTotal) in maven_compute_timming()
782 if (hcrt > mt->HTotal) in maven_compute_timming()
783 hcrt -= mt->HTotal; in maven_compute_timming()
[all …]
Dmatroxfb_crtc2.c64 struct my_timming* mt, in matroxfb_dh_restore() argument
104 if (mt->interlaced) { in matroxfb_dh_restore()
106 mt->VDisplay >>= 1; in matroxfb_dh_restore()
107 mt->VSyncStart >>= 1; in matroxfb_dh_restore()
108 mt->VSyncEnd >>= 1; in matroxfb_dh_restore()
109 mt->VTotal >>= 1; in matroxfb_dh_restore()
111 if ((mt->HTotal & 7) == 2) { in matroxfb_dh_restore()
113 mt->HTotal &= ~7; in matroxfb_dh_restore()
116 mga_outl(0x3C14, ((mt->HDisplay - 8) << 16) | (mt->HTotal - 8)); in matroxfb_dh_restore()
117 mga_outl(0x3C18, ((mt->HSyncEnd - 8) << 16) | (mt->HSyncStart - 8)); in matroxfb_dh_restore()
[all …]
Dmatroxfb_misc.c106 void matroxfb_var2my(struct fb_var_screeninfo* var, struct my_timming* mt) { in matroxfb_var2my() argument
112 mt->pixclock = 1000000000 / pixclock; in matroxfb_var2my()
113 if (mt->pixclock < 1) mt->pixclock = 1; in matroxfb_var2my()
114 mt->mnp = -1; in matroxfb_var2my()
115 mt->dblscan = var->vmode & FB_VMODE_DOUBLE; in matroxfb_var2my()
116 mt->interlaced = var->vmode & FB_VMODE_INTERLACED; in matroxfb_var2my()
117 mt->HDisplay = var->xres; in matroxfb_var2my()
118 mt->HSyncStart = mt->HDisplay + var->right_margin; in matroxfb_var2my()
119 mt->HSyncEnd = mt->HSyncStart + var->hsync_len; in matroxfb_var2my()
120 mt->HTotal = mt->HSyncEnd + var->left_margin; in matroxfb_var2my()
[all …]
Dmatroxfb_base.c782 { struct my_timming mt; in matroxfb_set_par() local
786 matroxfb_var2my(var, &mt); in matroxfb_set_par()
787 mt.crtc = MATROXFB_SRC_CRTC1; in matroxfb_set_par()
790 case 0: mt.delay = 31 + 0; break; in matroxfb_set_par()
791 case 16: mt.delay = 21 + 8; break; in matroxfb_set_par()
792 case 24: mt.delay = 17 + 8; break; in matroxfb_set_par()
793 case 32: mt.delay = 16 + 8; break; in matroxfb_set_par()
794 default: mt.delay = 31 + 8; break; in matroxfb_set_par()
803 minfo->outputs[out].output->compute(minfo->outputs[out].data, &mt); in matroxfb_set_par()
807 minfo->crtc1.pixclock = mt.pixclock; in matroxfb_set_par()
[all …]
Dmatroxfb_base.h696 extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt);
/linux-4.4.14/drivers/lightnvm/
Dcore.c91 struct nvmm_type *mt; in nvm_find_mgr_type() local
93 list_for_each_entry(mt, &nvm_mgrs, list) in nvm_find_mgr_type()
94 if (!strcmp(name, mt->name)) in nvm_find_mgr_type()
95 return mt; in nvm_find_mgr_type()
102 struct nvmm_type *mt; in nvm_init_mgr() local
107 list_for_each_entry(mt, &nvm_mgrs, list) { in nvm_init_mgr()
108 ret = mt->register_mgr(dev); in nvm_init_mgr()
114 return mt; in nvm_init_mgr()
120 int nvm_register_mgr(struct nvmm_type *mt) in nvm_register_mgr() argument
126 if (nvm_find_mgr_type(mt->name)) { in nvm_register_mgr()
[all …]
Drrpc.c1102 struct nvm_lun *lun = dev->mt->get_lun(dev, lun_begin + i); in rrpc_luns_init()
/linux-4.4.14/drivers/input/mouse/
Dalps.c491 fields->mt[0] = fields->st; in alps_process_bitmap()
492 fields->mt[1] = corner[priv->second_touch]; in alps_process_bitmap()
512 input_mt_assign_slots(dev, slot, f->mt, n, 0); in alps_report_mt_data()
514 alps_set_slot(dev, slot[i], f->mt[i].x, f->mt[i].y); in alps_report_mt_data()
527 f->mt[0].x = f->st.x; in alps_report_semi_mt_data()
528 f->mt[0].y = f->st.y; in alps_report_semi_mt_data()
534 alps_set_slot(dev, 0, f->mt[0].x, f->mt[0].y); in alps_report_semi_mt_data()
536 alps_set_slot(dev, 1, f->mt[1].x, f->mt[1].y); in alps_report_semi_mt_data()
970 static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt, in alps_get_finger_coordinate_v7() argument
974 mt[0].x = ((pkt[2] & 0x80) << 4); in alps_get_finger_coordinate_v7()
[all …]
Delantech.c498 etd->mt[0].x = ((packet[1] & 0x0f) << 8) | packet[2]; in elantech_report_absolute_v3()
503 etd->mt[0].y = etd->y_max - in elantech_report_absolute_v3()
512 x1 = etd->mt[0].x; in elantech_report_absolute_v3()
513 y1 = etd->mt[0].y; in elantech_report_absolute_v3()
595 etd->mt[id].x = ((packet[1] & 0x0f) << 8) | packet[2]; in process_packet_head_v4()
596 etd->mt[id].y = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]); in process_packet_head_v4()
603 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x); in process_packet_head_v4()
604 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y); in process_packet_head_v4()
637 etd->mt[id].x += delta_x1 * weight; in process_packet_motion_v4()
638 etd->mt[id].y -= delta_y1 * weight; in process_packet_motion_v4()
[all …]
Delantech.h143 struct finger_pos mt[ETP_MAX_FINGERS]; member
Dalps.h204 struct input_mt_pos mt[MAX_TOUCHES]; member
/linux-4.4.14/include/linux/input/
Dmt.h73 static inline bool input_mt_is_used(const struct input_mt *mt, in input_mt_is_used() argument
76 return slot->frame == mt->frame; in input_mt_is_used()
83 static inline int input_mt_new_trkid(struct input_mt *mt) in input_mt_new_trkid() argument
85 return mt->trkid++ & TRKID_MAX; in input_mt_new_trkid()
/linux-4.4.14/drivers/isdn/hisax/
Dl3_1tr6.c31 l3_1TR6_message(struct l3_process *pc, u_char mt, u_char pd) in l3_1TR6_message() argument
39 MsgHead(p, pc->callref, mt, pd); in l3_1TR6_message()
744 int i, mt, cr; in up1tr6() local
784 mt = skb->data[3]; in up1tr6()
789 (pr == (DL_DATA | INDICATION)) ? " " : "(broadcast) ", mt); in up1tr6()
793 if (mt == MT_N1_SETUP) { in up1tr6()
806 } else if ((mt == MT_N1_REL) || (mt == MT_N1_REL_ACK) || in up1tr6()
807 (mt == MT_N1_CANC_ACK) || (mt == MT_N1_CANC_REJ) || in up1tr6()
808 (mt == MT_N1_REG_ACK) || (mt == MT_N1_REG_REJ) || in up1tr6()
809 (mt == MT_N1_SUSP_ACK) || (mt == MT_N1_RES_REJ) || in up1tr6()
[all …]
Dq931.c1192 unsigned char pd, cr_l, cr, mt; in dlogframe() local
1260 mt = *buf++; in dlogframe()
1263 if (mt_n0[i].nr == mt) in dlogframe()
1269 size, mt); in dlogframe()
1276 if (mt_n1[i].nr == mt) in dlogframe()
1282 size, mt); in dlogframe()
1361 mt = *buf++; in dlogframe()
1363 if (mtlist[i].nr == mt) in dlogframe()
1370 size, mt); in dlogframe()
1447 mt = *buf++; in dlogframe()
[all …]
Dtei.c313 int mt; in tei_l1l2() local
343 mt = skb->data[3]; in tei_l1l2()
344 if (mt == ID_ASSIGNED) in tei_l1l2()
346 else if (mt == ID_DENIED) in tei_l1l2()
348 else if (mt == ID_CHK_REQ) in tei_l1l2()
350 else if (mt == ID_REMOVE) in tei_l1l2()
354 "tei handler wrong mt %x\n", mt); in tei_l1l2()
Dl3ni1.c428 l3ni1_message(struct l3_process *pc, u_char mt) in l3ni1_message() argument
436 MsgHead(p, pc->callref, mt); in l3ni1_message()
441 l3ni1_message_plus_chid(struct l3_process *pc, u_char mt) in l3ni1_message_plus_chid() argument
450 MsgHead(p, pc->callref, mt); in l3ni1_message_plus_chid()
462 l3ni1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3ni1_message_cause() argument
469 MsgHead(p, pc->callref, mt); in l3ni1_message_cause()
666 u_char mt; in check_infoelements() local
679 mt = *p++; in check_infoelements()
731 mt, err_compr, err_ureg, err_len, err_seq); in check_infoelements()
746 l3ni1_check_messagetype_validity(struct l3_process *pc, int mt, void *arg) in l3ni1_check_messagetype_validity() argument
[all …]
Dl3dss1.c499 l3dss1_message(struct l3_process *pc, u_char mt) in l3dss1_message() argument
507 MsgHead(p, pc->callref, mt); in l3dss1_message()
512 l3dss1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3dss1_message_cause() argument
519 MsgHead(p, pc->callref, mt); in l3dss1_message_cause()
716 u_char mt; in check_infoelements() local
729 mt = *p++; in check_infoelements()
781 mt, err_compr, err_ureg, err_len, err_seq); in check_infoelements()
796 l3dss1_check_messagetype_validity(struct l3_process *pc, int mt, void *arg) in l3dss1_check_messagetype_validity() argument
798 switch (mt) { in l3dss1_check_messagetype_validity()
823 l3_debug(pc->st, "l3dss1_check_messagetype_validity mt(%x) OK", mt); in l3dss1_check_messagetype_validity()
[all …]
Dhfcscard.c101 hfcs_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcs_card_msg() argument
107 debugl1(cs, "HFCS: card_msg %x", mt); in hfcs_card_msg()
108 switch (mt) { in hfcs_card_msg()
Denternow_pci.c173 enpci_card_msg(struct IsdnCardState *cs, int mt, void *arg) in enpci_card_msg() argument
179 debugl1(cs, "enter:now PCI: card_msg: 0x%04X", mt); in enpci_card_msg()
181 switch (mt) { in enpci_card_msg()
Dnj_u.c102 NETjet_U_card_msg(struct IsdnCardState *cs, int mt, void *arg) in NETjet_U_card_msg() argument
106 switch (mt) { in NETjet_U_card_msg()
Dsportster.c158 Sportster_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sportster_card_msg() argument
162 switch (mt) { in Sportster_card_msg()
Dnj_s.c122 NETjet_S_card_msg(struct IsdnCardState *cs, int mt, void *arg) in NETjet_S_card_msg() argument
126 switch (mt) { in NETjet_S_card_msg()
Dmic.c168 mic_card_msg(struct IsdnCardState *cs, int mt, void *arg) in mic_card_msg() argument
172 switch (mt) { in mic_card_msg()
Davm_a1p.c175 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
179 switch (mt) { in AVM_card_msg()
Ds0box.c192 S0Box_card_msg(struct IsdnCardState *cs, int mt, void *arg) in S0Box_card_msg() argument
196 switch (mt) { in S0Box_card_msg()
Dtelespci.c265 TelesPCI_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TelesPCI_card_msg() argument
269 switch (mt) { in TelesPCI_card_msg()
Disurf.c143 ISurf_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ISurf_card_msg() argument
147 switch (mt) { in ISurf_card_msg()
Dix1_micro.c186 ix1_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ix1_card_msg() argument
190 switch (mt) { in ix1_card_msg()
Dsaphir.c218 saphir_card_msg(struct IsdnCardState *cs, int mt, void *arg) in saphir_card_msg() argument
222 switch (mt) { in saphir_card_msg()
Davm_a1.c156 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
160 switch (mt) { in AVM_card_msg()
Dbkm_a4t.c220 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument
224 switch (mt) { in BKM_card_msg()
Dteles0.c242 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument
246 switch (mt) { in Teles_card_msg()
Dteleint.c226 TeleInt_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TeleInt_card_msg() argument
231 switch (mt) { in TeleInt_card_msg()
Dniccy.c201 static int niccy_card_msg(struct IsdnCardState *cs, int mt, void *arg) in niccy_card_msg() argument
205 switch (mt) { in niccy_card_msg()
Dbkm_a8.c222 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument
226 switch (mt) { in BKM_card_msg()
Dteles3.c230 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument
234 switch (mt) { in Teles_card_msg()
Dasuscom.c272 Asus_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Asus_card_msg() argument
276 switch (mt) { in Asus_card_msg()
Dgazel.c401 Gazel_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Gazel_card_msg() argument
405 switch (mt) { in Gazel_card_msg()
Dsedlbauer.c441 Sedl_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sedl_card_msg() argument
445 switch (mt) { in Sedl_card_msg()
Davm_pci.c686 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
690 switch (mt) { in AVM_card_msg()
Dhfc_sx.c1350 hfcsx_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcsx_card_msg() argument
1355 debugl1(cs, "HFCSX: card_msg %x", mt); in hfcsx_card_msg()
1356 switch (mt) { in hfcsx_card_msg()
Dw6692.c970 w6692_card_msg(struct IsdnCardState *cs, int mt, void *arg) in w6692_card_msg() argument
972 switch (mt) { in w6692_card_msg()
Dhfc_pci.c1598 hfcpci_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcpci_card_msg() argument
1603 debugl1(cs, "HFCPCI: card_msg %x", mt); in hfcpci_card_msg()
1604 switch (mt) { in hfcpci_card_msg()
Delsa.c650 Elsa_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Elsa_card_msg() argument
655 switch (mt) { in Elsa_card_msg()
Ddiva.c836 Diva_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Diva_card_msg() argument
841 switch (mt) { in Diva_card_msg()
Dconfig.c1578 static int hisax_cardmsg(struct IsdnCardState *cs, int mt, void *arg);
1814 static int hisax_cardmsg(struct IsdnCardState *cs, int mt, void *arg) in hisax_cardmsg() argument
/linux-4.4.14/arch/mips/kernel/
DMakefile49 obj-$(CONFIG_MIPS_MT) += mips-mt.o
50 obj-$(CONFIG_MIPS_MT_FPAFF) += mips-mt-fpaff.o
51 obj-$(CONFIG_MIPS_MT_SMP) += smp-mt.o
60 obj-$(CONFIG_MIPS_VPE_LOADER_MT) += vpe-mt.o
63 obj-$(CONFIG_MIPS_VPE_APSP_API_MT) += rtlx-mt.o
Dcps-vec.S260 .set mt define
378 .set mt define
Dgenex.S447 BUILD_HANDLER mt mt sti silent /* #25 */
Dcpu-probe.c413 int isa, mt; in decode_config0() local
420 mt = config0 & MIPS_CONF_MT; in decode_config0()
421 if (mt == MIPS_CONF_MT_TLB) in decode_config0()
423 else if (mt == MIPS_CONF_MT_FTLB) in decode_config0()
/linux-4.4.14/arch/arm/mm/
Dmm.h67 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
/linux-4.4.14/drivers/net/ethernet/mellanox/mlxsw/
Dspectrum_switchdev.c311 enum mlxsw_reg_svfa_mt mt; in mlxsw_sp_port_fid_map() local
314 mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_fid_map()
316 mt = MLXSW_REG_SVFA_MT_VID_TO_FID; in mlxsw_sp_port_fid_map()
318 return mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, true, fid, fid); in mlxsw_sp_port_fid_map()
323 enum mlxsw_reg_svfa_mt mt; in mlxsw_sp_port_fid_unmap() local
328 mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_fid_unmap()
329 return mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, fid, fid); in mlxsw_sp_port_fid_unmap()
357 enum mlxsw_reg_svfa_mt mt; in __mlxsw_sp_port_vlans_add() local
380 mt = MLXSW_REG_SVFA_MT_VID_TO_FID; in __mlxsw_sp_port_vlans_add()
381 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, in __mlxsw_sp_port_vlans_add()
Dspectrum.h115 enum mlxsw_reg_svfa_mt mt, bool valid, u16 fid,
Dspectrum.c295 enum mlxsw_reg_svfa_mt mt, bool valid, u16 fid, in mlxsw_sp_port_vid_to_fid_set() argument
301 mlxsw_reg_svfa_pack(svfa_pl, mlxsw_sp_port->local_port, mt, valid, in mlxsw_sp_port_vid_to_fid_set()
500 enum mlxsw_reg_svfa_mt mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_vp_mode_trans() local
505 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, true, vid, in mlxsw_sp_port_vp_mode_trans()
523 mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, vid, in mlxsw_sp_port_vp_mode_trans()
530 enum mlxsw_reg_svfa_mt mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_vlan_mode_trans() local
539 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, in mlxsw_sp_port_vlan_mode_trans()
Dreg.h1001 enum mlxsw_reg_svfa_mt mt, bool valid, in mlxsw_reg_svfa_pack() argument
1005 local_port = mt == MLXSW_REG_SVFA_MT_VID_TO_FID ? 0 : local_port; in mlxsw_reg_svfa_pack()
1008 mlxsw_reg_svfa_mapping_table_set(payload, mt); in mlxsw_reg_svfa_pack()
/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/drivers/edac/
Dsynopsys_edac.c338 enum mem_type mt; in synps_edac_get_mtype() local
344 mt = MEM_DDR3; in synps_edac_get_mtype()
346 mt = MEM_DDR2; in synps_edac_get_mtype()
348 return mt; in synps_edac_get_mtype()
/linux-4.4.14/drivers/video/fbdev/aty/
Dradeon_monitor.c73 int i, mt = MT_NONE; in radeon_parse_montype_prop() local
84 mt = MT_DFP; in radeon_parse_montype_prop()
86 mt = MT_CRT; in radeon_parse_montype_prop()
109 return mt; in radeon_parse_montype_prop()
113 return mt; in radeon_parse_montype_prop()
115 return mt; in radeon_parse_montype_prop()
144 int mt = radeon_parse_montype_prop(dp, out_EDID, 0); in radeon_probe_OF_head() local
148 if (mt == MT_DFP && rinfo->is_mobility) in radeon_probe_OF_head()
149 mt = MT_LCD; in radeon_probe_OF_head()
150 return mt; in radeon_probe_OF_head()
/linux-4.4.14/drivers/net/ethernet/smsc/
Dsmc91x.h1021 const unsigned char *mt = (x); \
1022 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \
1023 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \
1024 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \
1025 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
/linux-4.4.14/drivers/isdn/mISDN/
Dtei.c770 tei_ph_data_ind(struct teimgr *tm, u_int mt, u_char *dp, int len) in tei_ph_data_ind() argument
775 tm->tei_m.printdebug(&tm->tei_m, "tei handler mt %x", mt); in tei_ph_data_ind()
776 if (mt == ID_ASSIGNED) in tei_ph_data_ind()
778 else if (mt == ID_DENIED) in tei_ph_data_ind()
780 else if (mt == ID_CHK_REQ) in tei_ph_data_ind()
782 else if (mt == ID_REMOVE) in tei_ph_data_ind()
784 else if (mt == ID_VERIFY) in tei_ph_data_ind()
786 else if (mt == ID_CHK_RES) in tei_ph_data_ind()
891 u_char mt; in ph_data_ind() local
912 mt = skb->data[6]; in ph_data_ind()
[all …]
/linux-4.4.14/net/ipv4/
Dipconfig.c673 u8 mt = ((ic_servaddr == NONE) in ic_dhcp_init_options() local
679 printk("DHCP: Sending message type %d\n", mt); in ic_dhcp_init_options()
687 *e++ = mt; in ic_dhcp_init_options()
689 if (mt == DHCPREQUEST) { in ic_dhcp_init_options()
1061 int mt = 0; in ic_bootp_recv() local
1074 mt = opt[2]; in ic_bootp_recv()
1084 printk("DHCP: Got message type %d\n", mt); in ic_bootp_recv()
1087 switch (mt) { in ic_bootp_recv()
1125 ic_dhcp_msgtype = mt; in ic_bootp_recv()
/linux-4.4.14/arch/arm64/mm/
Dproc.S44 #define MAIR(attr, mt) ((attr) << ((mt) * 8)) argument
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-cfq-target-latency3 contact: Tao Ma <boyu.mt@taobao.com>
/linux-4.4.14/mm/
Dpage_alloc.c833 int mt; /* migratetype of the to-be-freed page */ in free_pcppages_bulk() local
839 mt = get_pcppage_migratetype(page); in free_pcppages_bulk()
841 VM_BUG_ON_PAGE(is_migrate_isolate(mt), page); in free_pcppages_bulk()
844 mt = get_pageblock_migratetype(page); in free_pcppages_bulk()
846 __free_one_page(page, page_to_pfn(page), zone, 0, mt); in free_pcppages_bulk()
847 trace_mm_page_pcpu_drain(page, 0, mt); in free_pcppages_bulk()
1668 int mt; in reserve_highatomic_pageblock() local
1686 mt = get_pageblock_migratetype(page); in reserve_highatomic_pageblock()
1687 if (mt != MIGRATE_HIGHATOMIC && in reserve_highatomic_pageblock()
1688 !is_migrate_isolate(mt) && !is_migrate_cma(mt)) { in reserve_highatomic_pageblock()
[all …]
/linux-4.4.14/include/net/nfc/
Dnci.h178 #define nci_mt_set(hdr, mt) ((hdr)[0] |= (__u8)(((mt)&0x07)<<5)) argument
/linux-4.4.14/Documentation/DocBook/
Ddevice-drivers.xml.db1016 API-struct-input-mt-slot
1017 API-struct-input-mt
1018 API-struct-input-mt-pos
1019 API-input-mt-init-slots
1020 API-input-mt-destroy-slots
1021 API-input-mt-report-slot-state
1022 API-input-mt-report-finger-count
1023 API-input-mt-report-pointer-emulation
1024 API-input-mt-drop-unused
1025 API-input-mt-sync-frame
[all …]
D.device-drivers.xml.cmd2 …input/ff-core.c drivers/input/ff-memless.c include/linux/input/mt.h drivers/input/input-mt.c inclu…
/linux-4.4.14/drivers/hid/
Dhid-multitouch.c619 struct input_mt *mt = input->mt; in mt_complete_slot() local
624 if ((td->mtclass.quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) { in mt_complete_slot()
625 struct input_mt_slot *slot = &mt->slots[slotnum]; in mt_complete_slot()
627 input_mt_is_used(mt, slot)) in mt_complete_slot()
Dwacom_wac.c1216 for (i = 0; i < input->mt->num_slots; i++) { in wacom_wac_finger_count_touches()
1217 struct input_mt_slot *ps = &input->mt->slots[i]; in wacom_wac_finger_count_touches()
1666 bool mt = wacom_wac->features.touch_max > 1; in wacom_wac_finger_slot() local
1674 if (mt) { in wacom_wac_finger_slot()
1686 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X, in wacom_wac_finger_slot()
1688 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y, in wacom_wac_finger_slot()
/linux-4.4.14/drivers/media/usb/go7007/
Dgo7007-v4l2.c812 u8 *mt; in go7007_s_ctrl() local
852 mt = go->modet_map; in go7007_s_ctrl()
853 for (y = 0; y < go->height / 16; y++, mt += go->width / 16) in go7007_s_ctrl()
854 memcpy(mt, ctrl->p_new.p_u8 + y * (720 / 16), go->width / 16); in go7007_s_ctrl()
/linux-4.4.14/arch/powerpc/kernel/
Dswsusp_asm64.S67 mt##special r0
/linux-4.4.14/drivers/iommu/
Dmsm_iommu.c687 static int __init get_tex_class(int icp, int ocp, int mt, int nos) in get_tex_class() argument
703 if (icp == c_icp && ocp == c_ocp && c_mt == mt && c_nos == nos) in get_tex_class()
/linux-4.4.14/drivers/nvme/host/
Dlightnvm.c458 if (dev->mt && dev->mt->end_io(rqd, error)) in nvme_nvm_end_io()
/linux-4.4.14/Documentation/input/
Dalps.txt158 byte 4: 0 mt x3 x2 y3 y2 y1 y0
177 This packet only appears after a position packet with the mt bit set, and
250 For mt, the format is:
Devent-codes.txt274 touchpads, the semi-mt property should be set.
/linux-4.4.14/include/linux/
Dinput.h158 struct input_mt *mt; member
Dlightnvm.h247 struct nvmm_type *mt; member
/linux-4.4.14/Documentation/scsi/
Dst.txt61 alternative is to make a small script that uses mt to set the defaults
352 defined in mtio.h The tape control program 'mt' uses these ioctls. Try
353 to find an mt that supports all of the Linux SCSI tape ioctls and
355 (look for a package mt-st* from the Linux ftp sites; the GNU mt does
Dosst.txt86 supported and you may try the mt (or mt_st) program to jump between
/linux-4.4.14/Documentation/blockdev/
Dcciss.txt177 must rewind the tape (by issuing "mt -f /dev/st0 rewind" for example)
/linux-4.4.14/drivers/block/
Dnull_blk.c441 dev->mt->end_io(rqd, error); in null_lnvm_end_io()
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-cd.1994-2004263 * 4.60 Dec 17, 2003 - Add mt rainier support
DChangeLog.ide-tape.1995-2002199 * 3) Either solve or document the fact that `mt rewind' is
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
Dt3_hw.c587 VPD_ENTRY(mt, 2); /* mem timing */
/linux-4.4.14/
DMAINTAINERS5485 F: drivers/input/input-mt.c