/Linux-v5.4/drivers/char/agp/ |
D | hp-agp.c | 3 * HP zx1 AGPGART routines. 6 * Bjorn Helgaas <bjorn.helgaas@hp.com> 23 /* HP ZX1 IOC registers */ 76 struct _hp_private *hp = &hp_private; in hp_zx1_ioc_shared() local 78 printk(KERN_INFO PFX "HP ZX1 IOC: IOPDIR shared with sba_iommu\n"); in hp_zx1_ioc_shared() 86 hp->io_tlb_ps = readq(hp->ioc_regs+HP_ZX1_TCNFG); in hp_zx1_ioc_shared() 87 switch (hp->io_tlb_ps) { in hp_zx1_ioc_shared() 88 case 0: hp->io_tlb_shift = 12; break; in hp_zx1_ioc_shared() 89 case 1: hp->io_tlb_shift = 13; break; in hp_zx1_ioc_shared() 90 case 2: hp->io_tlb_shift = 14; break; in hp_zx1_ioc_shared() [all …]
|
/Linux-v5.4/drivers/net/ethernet/sun/ |
D | sunhme.c | 111 static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigned int s) in tx_add_log() argument 119 tlp->tx_new = hp->tx_new; in tx_add_log() 120 tlp->tx_old = hp->tx_old; in tx_add_log() 139 static __inline__ void tx_dump_ring(struct happy_meal *hp) in tx_dump_ring() argument 141 struct hmeal_init_block *hb = hp->happy_block; in tx_dump_ring() 155 #define tx_add_log(hp, a, s) do { } while(0) argument 157 #define tx_dump_ring(hp) do { } while(0) argument 305 static inline u32 hme_read_desc32(struct happy_meal *hp, hme32 *p) in hme_read_desc32() argument 322 static void BB_PUT_BIT(struct happy_meal *hp, void __iomem *tregs, int bit) in BB_PUT_BIT() argument 324 hme_write32(hp, tregs + TCVR_BBDATA, bit); in BB_PUT_BIT() [all …]
|
/Linux-v5.4/drivers/tty/hvc/ |
D | hvsi.c | 87 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 …]
|
D | hvc_console.c | 92 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 …]
|
D | hvc_console.h | 60 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, int raise); 80 extern int 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 …]
|
D | hvc_opal.c | 81 static int hvc_opal_hvsi_open(struct hvc_struct *hp, int data) in hvc_opal_hvsi_open() argument 83 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_open() 86 pr_devel("HVSI@%x: do open !\n", hp->vtermno); in hvc_opal_hvsi_open() 88 rc = notifier_add_irq(hp, data); in hvc_opal_hvsi_open() 92 return hvsilib_open(&pv->hvsi, hp); in hvc_opal_hvsi_open() 95 static void hvc_opal_hvsi_close(struct hvc_struct *hp, int data) in hvc_opal_hvsi_close() argument 97 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_close() 99 pr_devel("HVSI@%x: do close !\n", hp->vtermno); in hvc_opal_hvsi_close() 101 hvsilib_close(&pv->hvsi, hp); in hvc_opal_hvsi_close() 103 notifier_del_irq(hp, data); in hvc_opal_hvsi_close() [all …]
|
D | hvc_irq.c | 29 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 …]
|
D | hvc_vio.c | 156 static int hvterm_hvsi_open(struct hvc_struct *hp, int data) in hvterm_hvsi_open() argument 158 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_open() 163 rc = notifier_add_irq(hp, data); in hvterm_hvsi_open() 167 return hvsilib_open(&pv->hvsi, hp); in hvterm_hvsi_open() 170 static void hvterm_hvsi_close(struct hvc_struct *hp, int data) in hvterm_hvsi_close() argument 172 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_close() 176 hvsilib_close(&pv->hvsi, hp); in hvterm_hvsi_close() 178 notifier_del_irq(hp, data); in hvterm_hvsi_close() 181 void hvterm_hvsi_hangup(struct hvc_struct *hp, int data) in hvterm_hvsi_hangup() argument 183 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_hangup() [all …]
|
/Linux-v5.4/arch/sparc/kernel/ |
D | mdesc.c | 148 static void mdesc_handle_init(struct mdesc_handle *hp, in mdesc_handle_init() argument 152 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1)); in mdesc_handle_init() 154 memset(hp, 0, handle_size); in mdesc_handle_init() 155 INIT_LIST_HEAD(&hp->list); in mdesc_handle_init() 156 hp->self_base = base; in mdesc_handle_init() 157 refcount_set(&hp->refcnt, 1); in mdesc_handle_init() 158 hp->handle_size = handle_size; in mdesc_handle_init() 164 struct mdesc_handle *hp; in mdesc_memblock_alloc() local 174 hp = NULL; in mdesc_memblock_alloc() 176 hp = __va(paddr); in mdesc_memblock_alloc() [all …]
|
D | vio.c | 207 static const u64 *vio_cfg_handle(struct mdesc_handle *hp, u64 node) in vio_cfg_handle() argument 212 mdesc_for_each_arc(a, hp, node, MDESC_ARC_TYPE_BACK) { in vio_cfg_handle() 215 target = mdesc_arc_target(hp, a); in vio_cfg_handle() 216 cfg_handle = mdesc_get_property(hp, target, in vio_cfg_handle() 227 * @hp: Handle to the MD 238 u64 vio_vdev_node(struct mdesc_handle *hp, struct vio_dev *vdev) in vio_vdev_node() argument 245 node = mdesc_get_node(hp, (const char *)vdev->node_name, in vio_vdev_node() 252 static void vio_fill_channel_info(struct mdesc_handle *hp, u64 mp, in vio_fill_channel_info() argument 260 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) { in vio_fill_channel_info() 265 target = mdesc_arc_target(hp, a); in vio_fill_channel_info() [all …]
|
/Linux-v5.4/Documentation/sound/hd-audio/ |
D | models.rst | 10 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-v5.4/drivers/platform/x86/ |
D | hp_accel.c | 3 * hp_accel.c - Interface between LIS3LV02DL driver and HP ACPI BIOS 63 /* HP-specific accelerometer driver ------------------------------------ */ 74 {"HPQ0004", 0}, /* HP Mobile Data Protection System PNP */ 75 {"HPQ6000", 0}, /* HP Mobile Data Protection System PNP */ 76 {"HPQ6007", 0}, /* HP Mobile Data Protection System PNP */ 196 AXIS_DMI_MATCH("NC64x0", "HP Compaq nc64", x_inverted), 197 AXIS_DMI_MATCH("NC84x0", "HP Compaq nc84", z_inverted), 198 AXIS_DMI_MATCH("NX9420", "HP Compaq nx9420", x_inverted), 199 AXIS_DMI_MATCH("NW9440", "HP Compaq nw9440", x_inverted), 200 AXIS_DMI_MATCH("NC2510", "HP Compaq 2510", y_inverted), [all …]
|
/Linux-v5.4/drivers/net/ethernet/mellanox/mlx5/core/ |
D | transobj.c | 342 static int mlx5_hairpin_create_queues(struct mlx5_hairpin *hp, in mlx5_hairpin_create_queues() argument 347 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues() 348 err = mlx5_hairpin_create_rq(hp->func_mdev, params, &hp->rqn[i]); in mlx5_hairpin_create_queues() 353 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues() 354 err = mlx5_hairpin_create_sq(hp->peer_mdev, params, &hp->sqn[i]); in mlx5_hairpin_create_queues() 363 mlx5_core_destroy_sq(hp->peer_mdev, hp->sqn[j]); in mlx5_hairpin_create_queues() 364 i = hp->num_channels; in mlx5_hairpin_create_queues() 367 mlx5_core_destroy_rq(hp->func_mdev, hp->rqn[j]); in mlx5_hairpin_create_queues() 371 static void mlx5_hairpin_destroy_queues(struct mlx5_hairpin *hp) in mlx5_hairpin_destroy_queues() argument 375 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_destroy_queues() [all …]
|
/Linux-v5.4/net/ipv4/netfilter/ |
D | nf_tproxy_ipv4.c | 23 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() 86 struct tcphdr _hdr, *hp; in nf_tproxy_get_sock_v4() local 88 hp = skb_header_pointer(skb, ip_hdrlen(skb), in nf_tproxy_get_sock_v4() 90 if (hp == NULL) in nf_tproxy_get_sock_v4() 97 __tcp_hdrlen(hp), in nf_tproxy_get_sock_v4()
|
/Linux-v5.4/net/ipv6/netfilter/ |
D | nf_tproxy_ipv6.c | 46 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() local 89 hp = skb_header_pointer(skb, thoff, in nf_tproxy_get_sock_v6() 91 if (hp == NULL) in nf_tproxy_get_sock_v6() 97 thoff + __tcp_hdrlen(hp), in nf_tproxy_get_sock_v6()
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-bus-pci-devices-cciss | 4 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 …]
|
D | sysfs-class-scsi_tape | 4 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-v5.4/net/netfilter/ |
D | xt_TPROXY.c | 40 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() 79 iph->protocol, &iph->daddr, ntohs(hp->dest), in tproxy_tg4() 87 iph->protocol, &iph->saddr, ntohs(hp->source), in tproxy_tg4() 88 &iph->daddr, ntohs(hp->dest), skb->mark); in tproxy_tg4() 117 struct udphdr _hdr, *hp; in tproxy_tg6_v1() local [all …]
|
/Linux-v5.4/sound/soc/codecs/ |
D | sirf-audio-codec.c | 164 SND_SOC_DAPM_OUT_DRV("HP Left Driver", AUDIO_IC_CODEC_CTRL1, 166 SND_SOC_DAPM_OUT_DRV("HP Right Driver", AUDIO_IC_CODEC_CTRL1, 173 SND_SOC_DAPM_OUT_DRV("HP Left Driver", AUDIO_IC_CODEC_CTRL1, 175 SND_SOC_DAPM_OUT_DRV("HP Right Driver", AUDIO_IC_CODEC_CTRL1, 194 SND_SOC_DAPM_SWITCH("Left dac to hp left amp", SND_SOC_NOPM, 0, 0, 196 SND_SOC_DAPM_SWITCH("Left dac to hp right amp", SND_SOC_NOPM, 0, 0, 198 SND_SOC_DAPM_SWITCH("Right dac to hp left amp", SND_SOC_NOPM, 0, 0, 200 SND_SOC_DAPM_SWITCH("Right dac to hp right amp", SND_SOC_NOPM, 0, 0, 202 SND_SOC_DAPM_OUT_DRV("HP amp left driver", AUDIO_IC_CODEC_CTRL0, 3, 0, 204 SND_SOC_DAPM_OUT_DRV("HP amp right driver", AUDIO_IC_CODEC_CTRL0, 3, 0, [all …]
|
D | cs42l73.h | 41 #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 …]
|
/Linux-v5.4/arch/x86/pci/ |
D | common.c | 297 .ident = "HP ProLiant BL20p G3", 299 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 305 .ident = "HP ProLiant BL20p G4", 307 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 313 .ident = "HP ProLiant BL30p G1", 315 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 321 .ident = "HP ProLiant BL25p G1", 323 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 329 .ident = "HP ProLiant BL35p G1", 331 DMI_MATCH(DMI_SYS_VENDOR, "HP"), [all …]
|
/Linux-v5.4/drivers/scsi/ |
D | sg.c | 415 sg_io_hdr_t *hp; in sg_read() local 489 hp = &srp->header; in sg_read() 498 old_hdr->reply_len = (int) hp->timeout; in sg_read() 500 old_hdr->pack_id = hp->pack_id; in sg_read() 502 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0; in sg_read() 503 old_hdr->target_status = hp->masked_status; in sg_read() 504 old_hdr->host_status = hp->host_status; in sg_read() 505 old_hdr->driver_status = hp->driver_status; in sg_read() 506 if ((CHECK_CONDITION & hp->masked_status) || in sg_read() 507 (DRIVER_SENSE & hp->driver_status)) in sg_read() [all …]
|
/Linux-v5.4/net/ipv6/ |
D | exthdrs_core.c | 80 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() 207 struct ipv6_opt_hdr _hdr, *hp; in ipv6_find_hdr() local 217 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_find_hdr() 218 if (!hp) in ipv6_find_hdr() 251 ((!ipv6_ext_hdr(hp->nexthdr)) || in ipv6_find_hdr() [all …]
|
/Linux-v5.4/net/sunrpc/ |
D | svcauth.c | 165 struct auth_domain *hp; in auth_domain_lookup() local 172 hlist_for_each_entry(hp, head, hash) { in auth_domain_lookup() 173 if (strcmp(hp->name, name)==0) { in auth_domain_lookup() 174 kref_get(&hp->ref); in auth_domain_lookup() 176 return hp; in auth_domain_lookup() 188 struct auth_domain *hp; in auth_domain_find() local 194 hlist_for_each_entry_rcu(hp, head, hash) { in auth_domain_find() 195 if (strcmp(hp->name, name)==0) { in auth_domain_find() 196 if (!kref_get_unless_zero(&hp->ref)) in auth_domain_find() 197 hp = NULL; in auth_domain_find() [all …]
|
/Linux-v5.4/drivers/parisc/ |
D | README.dino | 2 ** 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…
|