Home
last modified time | relevance | path

Searched full:hp (Results 1 – 25 of 778) sorted by relevance

12345678910>>...32

/linux/drivers/net/ethernet/sun/
H A Dsunhme.c104 static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigned int s)
112 tlp->tx_new = hp->tx_new;
113 tlp->tx_old = hp->tx_old;
133 #define tx_add_log(hp, a, s) argument
252 static inline u32 hme_read_desc32(struct happy_meal *hp, hme32 *p) in hme_read_desc32() argument
261 static void BB_PUT_BIT(struct happy_meal *hp, void __iomem *tregs, int bit) in BB_PUT_BIT() argument
263 hme_write32(hp, tregs + TCVR_BBDATA, bit); in BB_PUT_BIT()
264 hme_write32(hp, tregs + TCVR_BBCLOCK, 0); in BB_PUT_BIT()
265 hme_write32(hp, tregs + TCVR_BBCLOCK, 1); in BB_PUT_BIT()
269 static u32 BB_GET_BIT(struct happy_meal *hp, void __iomem *tregs, int internal)
[all …]
/linux/drivers/tty/hvc/
H A Dhvsi.c87 static int (*hvsi_wait)(struct hvsi_struct *hp, int state);
99 static inline int is_console(struct hvsi_struct *hp) in is_console() argument
101 return hp->flags & HVSI_CONSOLE; in is_console()
104 static inline int is_open(struct hvsi_struct *hp) in is_open() argument
107 return (hp->state == HVSI_OPEN) in is_open()
108 || (hp->state == HVSI_WAIT_FOR_MCTRL_RESPONSE); in is_open()
111 static inline void print_state(struct hvsi_struct *hp) in print_state() argument
122 const char *name = (hp->state < ARRAY_SIZE(state_names)) in print_state()
123 ? state_names[hp->state] : "UNKNOWN"; in print_state()
125 pr_debug("hvsi%i: state = %s\n", hp->index, name); in print_state()
[all …]
H A Dhvc_console.c92 struct hvc_struct *hp; in hvc_get_by_index() local
97 list_for_each_entry(hp, &hvc_structs, next) { in hvc_get_by_index()
98 spin_lock_irqsave(&hp->lock, flags); in hvc_get_by_index()
99 if (hp->index == index) { in hvc_get_by_index()
100 tty_port_get(&hp->port); in hvc_get_by_index()
101 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index()
103 return hp; in hvc_get_by_index()
105 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index()
107 hp = NULL; in hvc_get_by_index()
110 return hp; in hvc_get_by_index()
[all …]
H A Dhvc_opal.c82 static int hvc_opal_hvsi_open(struct hvc_struct *hp, int data) in hvc_opal_hvsi_open() argument
84 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_open()
87 pr_devel("HVSI@%x: do open !\n", hp->vtermno); in hvc_opal_hvsi_open()
89 rc = notifier_add_irq(hp, data); in hvc_opal_hvsi_open()
93 return hvsilib_open(&pv->hvsi, hp); in hvc_opal_hvsi_open()
96 static void hvc_opal_hvsi_close(struct hvc_struct *hp, int data) in hvc_opal_hvsi_close() argument
98 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_close()
100 pr_devel("HVSI@%x: do close !\n", hp->vtermno); in hvc_opal_hvsi_close()
102 hvsilib_close(&pv->hvsi, hp); in hvc_opal_hvsi_close()
104 notifier_del_irq(hp, data); in hvc_opal_hvsi_close()
[all …]
H A Dhvc_console.h60 int (*notifier_add)(struct hvc_struct *hp, int irq);
61 void (*notifier_del)(struct hvc_struct *hp, int irq);
62 void (*notifier_hangup)(struct hvc_struct *hp, int irq);
65 int (*tiocmget)(struct hvc_struct *hp);
66 int (*tiocmset)(struct hvc_struct *hp, unsigned int set, unsigned int clear);
69 void (*dtr_rts)(struct hvc_struct *hp, bool active);
80 extern void hvc_remove(struct hvc_struct *hp);
83 int hvc_poll(struct hvc_struct *hp);
87 extern void __hvc_resize(struct hvc_struct *hp, struct winsize ws);
89 static inline void hvc_resize(struct hvc_struct *hp, struct winsize ws) in hvc_resize() argument
[all …]
H A Dhvc_irq.c29 int notifier_add_irq(struct hvc_struct *hp, int irq) in notifier_add_irq() argument
34 hp->irq_requested = 0; in notifier_add_irq()
37 rc = request_irq(irq, hvc_handle_interrupt, hp->flags, in notifier_add_irq()
38 "hvc_console", hp); in notifier_add_irq()
40 hp->irq_requested = 1; in notifier_add_irq()
44 void notifier_del_irq(struct hvc_struct *hp, int irq) in notifier_del_irq() argument
46 if (!hp->irq_requested) in notifier_del_irq()
48 free_irq(irq, hp); in notifier_del_irq()
49 hp->irq_requested = 0; in notifier_del_irq()
52 void notifier_hangup_irq(struct hvc_struct *hp, int irq) in notifier_hangup_irq() argument
[all …]
H A Dhvc_vio.c158 static int hvterm_hvsi_open(struct hvc_struct *hp, int data) in hvterm_hvsi_open() argument
160 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_open()
165 rc = notifier_add_irq(hp, data); in hvterm_hvsi_open()
169 return hvsilib_open(&pv->hvsi, hp); in hvterm_hvsi_open()
172 static void hvterm_hvsi_close(struct hvc_struct *hp, int data) in hvterm_hvsi_close() argument
174 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_close()
178 hvsilib_close(&pv->hvsi, hp); in hvterm_hvsi_close()
180 notifier_del_irq(hp, data); in hvterm_hvsi_close()
183 static void hvterm_hvsi_hangup(struct hvc_struct *hp, int data) in hvterm_hvsi_hangup() argument
185 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_hangup()
[all …]
/linux/arch/sparc/kernel/
H A Dmdesc.c149 static void mdesc_handle_init(struct mdesc_handle *hp, in mdesc_handle_init() argument
153 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1)); in mdesc_handle_init()
155 memset(hp, 0, handle_size); in mdesc_handle_init()
156 INIT_LIST_HEAD(&hp->list); in mdesc_handle_init()
157 hp->self_base = base; in mdesc_handle_init()
158 refcount_set(&hp->refcnt, 1); in mdesc_handle_init()
159 hp->handle_size = handle_size; in mdesc_handle_init()
165 struct mdesc_handle *hp; in mdesc_memblock_alloc() local
175 hp = NULL; in mdesc_memblock_alloc()
177 hp = __va(paddr); in mdesc_memblock_alloc()
[all …]
/linux/Documentation/sound/hd-audio/
H A Dmodels.rst10 3-jack in back, a HP out and a SPDIF out
31 Quirk for FSC S7020 with jack modes and HP mic support
41 hp-z200
42 Fixups for HP Z200
58 hp-eapd
59 Disable HP EAPD on NID 0x15
79 headset-mode-no-hp-mic
83 hp-gpio-led
84 GPIO LED support on HP laptops
85 hp-dock-gpio-mic1-led
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dtransobj.c311 static int mlx5_hairpin_create_queues(struct mlx5_hairpin *hp, in mlx5_hairpin_create_queues() argument
316 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues()
317 err = mlx5_hairpin_create_rq(hp->func_mdev, params, &hp->rqn[i]); in mlx5_hairpin_create_queues()
322 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues()
323 err = mlx5_hairpin_create_sq(hp->peer_mdev, params, &hp->sqn[i]); in mlx5_hairpin_create_queues()
332 mlx5_core_destroy_sq(hp->peer_mdev, hp->sqn[j]); in mlx5_hairpin_create_queues()
333 i = hp->num_channels; in mlx5_hairpin_create_queues()
336 mlx5_core_destroy_rq(hp->func_mdev, hp->rqn[j]); in mlx5_hairpin_create_queues()
340 static void mlx5_hairpin_destroy_queues(struct mlx5_hairpin *hp) in mlx5_hairpin_destroy_queues() argument
344 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_destroy_queues()
[all …]
/linux/arch/arm64/boot/dts/qcom/
H A Dx1e80100-hp-elitebook-ultra-g1q.dts5 #include "x1e80100-hp-omnibook-x14.dts"
8 model = "HP EliteBook Ultra G1q";
9 compatible = "hp,elitebook-ultra-g1q", "qcom,x1e80100";
14 firmware-name = "qcom/x1e80100/hp/elitebook-ultra-g1q/qcdxkmsuc8380.mbn";
19 firmware-name = "qcom/x1e80100/hp/elitebook-ultra-g1q/qcadsp8380.mbn",
20 "qcom/x1e80100/hp/elitebook-ultra-g1q/adsp_dtbs.elf";
24 firmware-name = "qcom/x1e80100/hp/elitebook-ultra-g1q/qccdsp8380.mbn",
25 "qcom/x1e80100/hp/elitebook-ultra-g1q/cdsp_dtbs.elf";
29 model = "X1E80100-HP-ELITEBOOK-ULTRA-G1Q";
/linux/sound/hda/codecs/realtek/
H A Dalc269.c279 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */ in alc282_init()
372 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
395 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */ in alc283_init()
432 /*depop hp during suspend*/ in alc283_shutup()
560 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */ in alc285_hp_init()
581 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */ in alc285_hp_init()
586 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */ in alc285_hp_init()
856 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */ in alc294_hp_init()
857 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */ in alc294_hp_init()
865 /* Set HP depo in alc294_hp_init()
[all...]
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-pci-devices-cciss4 Contact: iss_storagedev@hp.com
11 Contact: iss_storagedev@hp.com
18 Contact: iss_storagedev@hp.com
25 Contact: iss_storagedev@hp.com
32 Contact: iss_storagedev@hp.com
38 Contact: iss_storagedev@hp.com
45 Contact: iss_storagedev@hp.com
52 Contact: iss_storagedev@hp.com
59 Contact: iss_storagedev@hp.com
66 Contact: iss_storagedev@hp.com
[all …]
H A Dsysfs-class-scsi_tape4 Contact: Shane Seymour <shane.seymour@hp.com>
14 Contact: Shane Seymour <shane.seymour@hp.com>
31 Contact: Shane Seymour <shane.seymour@hp.com>
41 Contact: Shane Seymour <shane.seymour@hp.com>
52 Contact: Shane Seymour <shane.seymour@hp.com>
62 Contact: Shane Seymour <shane.seymour@hp.com>
72 Contact: Shane Seymour <shane.seymour@hp.com>
83 Contact: Shane Seymour <shane.seymour@hp.com>
93 Contact: Shane Seymour <shane.seymour@hp.com>
103 Contact: Shane Seymour <shane.seymour@hp.com>
/linux/net/ipv4/netfilter/
H A Dnf_tproxy_ipv4.c23 struct tcphdr _hdr, *hp; in nf_tproxy_handle_time_wait4() local
25 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in nf_tproxy_handle_time_wait4()
26 if (hp == NULL) { in nf_tproxy_handle_time_wait4()
31 if (hp->syn && !hp->rst && !hp->ack && !hp->fin) { in nf_tproxy_handle_time_wait4()
38 hp->source, lport ? lport : hp->dest, in nf_tproxy_handle_time_wait4()
88 struct tcphdr _hdr, *hp; in nf_tproxy_get_sock_v4()
87 struct tcphdr _hdr, *hp; nf_tproxy_get_sock_v4() local
[all...]
/linux/net/ipv6/netfilter/
H A Dnf_tproxy_ipv6.c46 struct tcphdr _hdr, *hp; in nf_tproxy_handle_time_wait6() local
48 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in nf_tproxy_handle_time_wait6()
49 if (hp == NULL) { in nf_tproxy_handle_time_wait6()
54 if (hp->syn && !hp->rst && !hp->ack && !hp->fin) { in nf_tproxy_handle_time_wait6()
62 hp->source, in nf_tproxy_handle_time_wait6()
63 lport ? lport : hp->dest, in nf_tproxy_handle_time_wait6()
87 struct tcphdr _hdr, *hp; in nf_tproxy_get_sock_v6()
88 struct tcphdr _hdr, *hp; nf_tproxy_get_sock_v6() local
[all...]
/linux/arch/x86/pci/
H A Dcommon.c298 .ident = "HP ProLiant BL20p G3",
300 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
306 .ident = "HP ProLiant BL20p G4",
308 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
314 .ident = "HP ProLiant BL30p G1",
316 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
322 .ident = "HP ProLiant BL25p G1",
324 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
330 .ident = "HP ProLiant BL35p G1",
332 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
[all …]
/linux/drivers/scsi/
H A Dsg.c419 struct compat_sg_io_hdr __user *hp = buf; in get_sg_io_pack_id() local
421 return get_user(*pack_id, &hp->pack_id); in get_sg_io_pack_id()
425 struct sg_io_hdr __user *hp = buf; in get_sg_io_pack_id() local
427 return get_user(*pack_id, &hp->pack_id); in get_sg_io_pack_id()
444 sg_io_hdr_t *hp; in sg_read() local
480 hp = &srp->header; in sg_read()
485 old_hdr->reply_len = (int) hp->timeout; in sg_read()
487 old_hdr->pack_id = hp->pack_id; in sg_read()
489 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0; in sg_read()
490 old_hdr->target_status = hp->masked_status; in sg_read()
[all …]
/linux/net/ipv6/
H A Dexthdrs_core.c80 struct ipv6_opt_hdr _hdr, *hp; in ipv6_skip_exthdr() local
85 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_skip_exthdr()
86 if (!hp) in ipv6_skip_exthdr()
103 hdrlen = ipv6_authlen(hp); in ipv6_skip_exthdr()
105 hdrlen = ipv6_optlen(hp); in ipv6_skip_exthdr()
107 nexthdr = hp->nexthdr; in ipv6_skip_exthdr()
209 struct ipv6_opt_hdr _hdr, *hp; in ipv6_find_hdr() local
219 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_find_hdr()
220 if (!hp) in ipv6_find_hdr()
253 ((!ipv6_ext_hdr(hp->nexthdr)) || in ipv6_find_hdr()
[all …]
/linux/sound/soc/codecs/
H A Dcs42l73.h41 #define CS42L73_HLADVOL 0x1A /* HP/Line A Out Digital Vol. */
42 #define CS42L73_HLBDVOL 0x1B /* HP/Line B Out Digital Vol. */
45 #define CS42L73_HPAAVOL 0x1E /* HP A Analog Volume. */
46 #define CS42L73_HPBAVOL 0x1F /* HP B Analog Volume. */
53 #define CS42L73_LIMARATEHL 0x26 /* Lmtr Attack Rate HP/Line. */
54 #define CS42L73_LIMRRATEHL 0x27 /* Lmtr Ctl, Rel.Rate HP/Line. */
55 #define CS42L73_LMAXHL 0x28 /* Lmtr Thresholds HP/Line. */
68 #define CS42L73_HLAIPAA 0x35 /* HP/LO Left Mixer: L. */
69 #define CS42L73_HLBIPBA 0x36 /* HP/LO Right Mixer: R. */
70 #define CS42L73_HLAXSPAA 0x37 /* HP/LO Left Mixer: XSP L */
[all …]
H A Dwm9705.c136 SND_SOC_DAPM_MIXER_NAMED_CTL("HP Mixer", SND_SOC_NOPM, 0, 0,
168 * WM9705 has no switches to disable the route from the inputs to the HP mixer
174 /* HP mixer */
175 {"HP Mixer", "PCBeep Playback Switch", "PCBEEP PGA"},
176 {"HP Mixer", "CD Playback Switch", "CD PGA"},
177 {"HP Mixer", "Mic Playback Switch", "Mic PGA"},
178 {"HP Mixer", "Phone Playback Switch", "Phone PGA"},
179 {"HP Mixer", "Line Playback Switch", "Line PGA"},
180 {"HP Mixer", NULL, "Left DAC"},
181 {"HP Mixer", NULL, "Right DAC"},
[all …]
/linux/net/netfilter/
H A Dxt_TPROXY.c40 struct udphdr _hdr, *hp; in tproxy_tg4() local
43 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in tproxy_tg4()
44 if (hp == NULL) in tproxy_tg4()
53 hp->source, hp->dest, in tproxy_tg4()
58 lport = hp->dest; in tproxy_tg4()
69 hp->source, lport, in tproxy_tg4()
109 struct udphdr _hdr, *hp; in tproxy_tg6_v1() local
120 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in tproxy_tg6_v1()
121 if (!hp) in tproxy_tg6_v1()
130 hp->source, hp->dest, in tproxy_tg6_v1()
[all …]
/linux/net/sunrpc/
H A Dsvcauth.c240 struct auth_domain *hp; in auth_domain_lookup() local
247 hlist_for_each_entry(hp, head, hash) { in auth_domain_lookup()
248 if (strcmp(hp->name, name)==0) { in auth_domain_lookup()
249 kref_get(&hp->ref); in auth_domain_lookup()
251 return hp; in auth_domain_lookup()
263 struct auth_domain *hp; in auth_domain_find() local
269 hlist_for_each_entry_rcu(hp, head, hash) { in auth_domain_find()
270 if (strcmp(hp->name, name)==0) { in auth_domain_find()
271 if (!kref_get_unless_zero(&hp->ref)) in auth_domain_find()
272 hp = NULL; in auth_domain_find()
[all …]
/linux/drivers/parisc/
H A DREADME.dino2 ** HP VISUALIZE Workstation PCI Bus Defect
4 ** "HP has discovered a potential system defect that can affect
5 ** the behavior of five models of HP VISUALIZE workstations when
7 ** cards. The defect is limited to the HP C180, C160, C160L, B160L,
10 ** PCI bus. HP-supplied graphics cards that utilize the PCI bus are
13 ** http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?locale=en_US&prodTypeId=12454&prodSeri…
/linux/sound/hda/codecs/
H A Dconexant.c252 * Check hp&mic tag to process headset plugin & plugout. in cx_update_headset_mic_vref()
801 // Init vers in BIOS mute the spk/hp by set gpio high to avoid pop noise, in cxt_fixup_hp_a_u()
809 { 0x16, 0x042140ff }, /* HP (seq# overridden) */
811 { 0x19, 0x2121103f }, /* dock-HP */
818 { 0x19, 0x042110ff }, /* HP (seq# overridden) */
820 { 0x1c, 0x212140ff }, /* dock-HP */
838 { 0x16, 0x03211040 }, /* hp out */
942 { 0x10, 0x961701f0 }, /* speaker/hp */
1030 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT_FIXUP_HP_530),
1032 /* HP, Packar
[all...]

12345678910>>...32