/linux-6.1.9/net/atm/ |
D | raw.c | 23 static void atm_push_raw(struct atm_vcc *vcc, struct sk_buff *skb) in atm_push_raw() argument 26 struct sock *sk = sk_atm(vcc); in atm_push_raw() 33 static void atm_pop_raw(struct atm_vcc *vcc, struct sk_buff *skb) in atm_pop_raw() argument 35 struct sock *sk = sk_atm(vcc); in atm_pop_raw() 38 vcc->vci, sk_wmem_alloc_get(sk), ATM_SKB(skb)->acct_truesize); in atm_pop_raw() 44 static int atm_send_aal0(struct atm_vcc *vcc, struct sk_buff *skb) in atm_send_aal0() argument 52 ((vcc->vpi << ATM_HDR_VPI_SHIFT) | in atm_send_aal0() 53 (vcc->vci << ATM_HDR_VCI_SHIFT))) { in atm_send_aal0() 57 if (vcc->dev->ops->send_bh) in atm_send_aal0() 58 return vcc->dev->ops->send_bh(vcc, skb); in atm_send_aal0() [all …]
|
D | common.c | 45 struct atm_vcc *vcc = atm_sk(sk); in __vcc_insert_socket() local 46 struct hlist_head *head = &vcc_hash[vcc->vci & (VCC_HTABLE_SIZE - 1)]; in __vcc_insert_socket() 47 sk->sk_hash = vcc->vci & (VCC_HTABLE_SIZE - 1); in __vcc_insert_socket() 66 static bool vcc_tx_ready(struct atm_vcc *vcc, unsigned int size) in vcc_tx_ready() argument 68 struct sock *sk = sk_atm(vcc); in vcc_tx_ready() 70 if (sk_wmem_alloc_get(sk) && !atm_may_send(vcc, size)) { in vcc_tx_ready() 102 struct atm_vcc *vcc = atm_sk(sk); in vcc_writable() local 104 return (vcc->qos.txtp.max_sdu + in vcc_writable() 127 struct atm_vcc *vcc = atm_sk(sk); in vcc_release_cb() local 129 if (vcc->release_cb) in vcc_release_cb() [all …]
|
D | signaling.c | 37 static void modify_qos(struct atm_vcc *vcc, struct atmsvc_msg *msg) in modify_qos() argument 41 if (test_bit(ATM_VF_RELEASED, &vcc->flags) || in modify_qos() 42 !test_bit(ATM_VF_READY, &vcc->flags)) in modify_qos() 45 if (!vcc->dev->ops->change_qos) in modify_qos() 49 msg->reply = vcc->dev->ops->change_qos(vcc, &msg->qos, in modify_qos() 64 static int sigd_send(struct atm_vcc *vcc, struct sk_buff *skb) in sigd_send() argument 71 WARN_ON(refcount_sub_and_test(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc)); in sigd_send() 72 vcc = *(struct atm_vcc **) &msg->vcc; in sigd_send() 73 pr_debug("%d (0x%lx)\n", (int)msg->type, (unsigned long)vcc); in sigd_send() 74 sk = sk_atm(vcc); in sigd_send() [all …]
|
D | svc.c | 46 static void svc_disconnect(struct atm_vcc *vcc) in svc_disconnect() argument 50 struct sock *sk = sk_atm(vcc); in svc_disconnect() 52 pr_debug("%p\n", vcc); in svc_disconnect() 53 if (test_bit(ATM_VF_REGIS, &vcc->flags)) { in svc_disconnect() 54 sigd_enq(vcc, as_close, NULL, NULL, NULL); in svc_disconnect() 57 if (test_bit(ATM_VF_RELEASED, &vcc->flags) || !sigd) in svc_disconnect() 66 atm_return(vcc, skb->truesize); in svc_disconnect() 68 sigd_enq2(NULL, as_reject, vcc, NULL, NULL, &vcc->qos, 0); in svc_disconnect() 71 clear_bit(ATM_VF_REGIS, &vcc->flags); in svc_disconnect() 78 struct atm_vcc *vcc; in svc_release() local [all …]
|
D | clip.c | 133 cv, cv->vcc, entry); in neigh_check_cb() 134 vcc_release_async(cv->vcc, -ETIMEDOUT); in neigh_check_cb() 167 struct atm_vcc *vcc; in clip_arp_rcv() local 170 vcc = ATM_SKB(skb)->vcc; in clip_arp_rcv() 171 if (!vcc || !atm_charge(vcc, skb->truesize)) { in clip_arp_rcv() 175 pr_debug("pushing to %p\n", vcc); in clip_arp_rcv() 176 pr_debug("using %p\n", CLIP_VCC(vcc)->old_push); in clip_arp_rcv() 177 CLIP_VCC(vcc)->old_push(vcc, skb); in clip_arp_rcv() 190 static void clip_push(struct atm_vcc *vcc, struct sk_buff *skb) in clip_push() argument 192 struct clip_vcc *clip_vcc = CLIP_VCC(vcc); in clip_push() [all …]
|
D | proc.c | 141 static void pvc_info(struct seq_file *seq, struct atm_vcc *vcc) in pvc_info() argument 152 vcc->dev->number, vcc->vpi, vcc->vci, in pvc_info() 153 vcc->qos.aal >= ARRAY_SIZE(aal_name) ? "err" : in pvc_info() 154 aal_name[vcc->qos.aal], vcc->qos.rxtp.min_pcr, in pvc_info() 155 class_name[vcc->qos.rxtp.traffic_class], in pvc_info() 156 vcc->qos.txtp.min_pcr, in pvc_info() 157 class_name[vcc->qos.txtp.traffic_class]); in pvc_info() 158 if (test_bit(ATM_VF_IS_CLIP, &vcc->flags)) { in pvc_info() 159 struct clip_vcc *clip_vcc = CLIP_VCC(vcc); in pvc_info() 170 static const char *vcc_state(struct atm_vcc *vcc) in vcc_state() argument [all …]
|
D | lec.c | 82 struct atm_vcc *vcc, struct sk_buff *skb); 94 static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc); 100 struct atm_vcc *vcc, 101 void (*old_push)(struct atm_vcc *vcc, 103 static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc); 181 lec_send(struct atm_vcc *vcc, struct sk_buff *skb) in lec_send() argument 185 ATM_SKB(skb)->vcc = vcc; in lec_send() 186 atm_account_tx(vcc, skb); in lec_send() 188 if (vcc->send(vcc, skb) < 0) { in lec_send() 210 struct atm_vcc *vcc; in lec_start_xmit() local [all …]
|
D | atm_misc.c | 15 int atm_charge(struct atm_vcc *vcc, int truesize) in atm_charge() argument 17 atm_force_charge(vcc, truesize); in atm_charge() 18 if (atomic_read(&sk_atm(vcc)->sk_rmem_alloc) <= sk_atm(vcc)->sk_rcvbuf) in atm_charge() 20 atm_return(vcc, truesize); in atm_charge() 21 atomic_inc(&vcc->stats->rx_drop); in atm_charge() 26 struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc, int pdu_size, in atm_alloc_charge() argument 29 struct sock *sk = sk_atm(vcc); in atm_alloc_charge() 32 atm_force_charge(vcc, guess); in atm_alloc_charge() 42 atm_return(vcc, guess); in atm_alloc_charge() 43 atomic_inc(&vcc->stats->rx_drop); in atm_alloc_charge()
|
D | pvc.c | 32 struct atm_vcc *vcc; in pvc_bind() local 41 vcc = ATM_SD(sock); in pvc_bind() 42 if (!test_bit(ATM_VF_HASQOS, &vcc->flags)) { in pvc_bind() 46 if (test_bit(ATM_VF_PARTIAL, &vcc->flags)) { in pvc_bind() 47 if (vcc->vpi != ATM_VPI_UNSPEC) in pvc_bind() 48 addr->sap_addr.vpi = vcc->vpi; in pvc_bind() 49 if (vcc->vci != ATM_VCI_UNSPEC) in pvc_bind() 50 addr->sap_addr.vci = vcc->vci; in pvc_bind() 93 struct atm_vcc *vcc = ATM_SD(sock); in pvc_getname() local 95 if (!vcc->dev || !test_bit(ATM_VF_ADDR, &vcc->flags)) in pvc_getname() [all …]
|
D | pppoatm.c | 292 struct atm_vcc *vcc; in pppoatm_send() local 295 ATM_SKB(skb)->vcc = pvcc->atmvcc; in pppoatm_send() 300 vcc = ATM_SKB(skb)->vcc; in pppoatm_send() 301 bh_lock_sock(sk_atm(vcc)); in pppoatm_send() 302 if (sock_owned_by_user(sk_atm(vcc))) { in pppoatm_send() 311 if (test_bit(ATM_VF_RELEASED, &vcc->flags) || in pppoatm_send() 312 test_bit(ATM_VF_CLOSE, &vcc->flags) || in pppoatm_send() 313 !test_bit(ATM_VF_READY, &vcc->flags)) { in pppoatm_send() 314 bh_unlock_sock(sk_atm(vcc)); in pppoatm_send() 332 bh_unlock_sock(sk_atm(vcc)); in pppoatm_send() [all …]
|
/linux-6.1.9/drivers/atm/ |
D | atmtcp.c | 18 extern int atm_init_aal5(struct atm_vcc *vcc); /* "raw" AAL5 transport */ 25 struct atm_vcc *vcc; /* control VCC; NULL if detached */ member 43 static int atmtcp_send_control(struct atm_vcc *vcc,int type, in atmtcp_send_control() argument 53 out_vcc = PRIV(vcc->dev) ? PRIV(vcc->dev)->vcc : NULL; in atmtcp_send_control() 58 out_vcc = PRIV(vcc->dev) ? PRIV(vcc->dev)->vcc : NULL; in atmtcp_send_control() 68 memset(&new_msg->vcc,0,sizeof(atm_kptr_t)); in atmtcp_send_control() 69 *(struct atm_vcc **) &new_msg->vcc = vcc; in atmtcp_send_control() 70 old_test = test_bit(flag,&vcc->flags); in atmtcp_send_control() 72 add_wait_queue(sk_sleep(sk_atm(vcc)), &wait); in atmtcp_send_control() 73 while (test_bit(flag,&vcc->flags) == old_test) { in atmtcp_send_control() [all …]
|
D | eni.c | 307 static void rx_ident_err(struct atm_vcc *vcc) in rx_ident_err() argument 313 dev = vcc->dev; in rx_ident_err() 319 eni_vcc = ENI_VCC(vcc); in rx_ident_err() 322 printk(KERN_ALERT " VCI %d, rxing %d, words %ld\n",vcc->vci, in rx_ident_err() 338 static int do_rx_dma(struct atm_vcc *vcc,struct sk_buff *skb, in do_rx_dma() argument 349 eni_dev = ENI_DEV(vcc->dev); in do_rx_dma() 350 eni_vcc = ENI_VCC(vcc); in do_rx_dma() 360 "mis-aligned RX data (0x%lx)\n",vcc->dev->number, in do_rx_dma() 361 vcc->vci,(unsigned long) paddr); in do_rx_dma() 364 ATM_SKB(skb)->vcc = vcc; in do_rx_dma() [all …]
|
D | iphase.c | 235 static void clear_lockup (struct atm_vcc *vcc, IADEV *dev) { in clear_lockup() argument 244 if (vcc->qos.txtp.traffic_class == ATM_ABR) { in clear_lockup() 245 vcstatus = (vcstatus_t *) &(dev->testTable[vcc->vci]->vc_status); in clear_lockup() 249 abr_vc += vcc->vci; in clear_lockup() 250 eabr_vc += vcc->vci; in clear_lockup() 261 if((tempCellSlot == dev->testTable[vcc->vci]->lastTime) in clear_lockup() 262 && (tempFract == dev->testTable[vcc->vci]->fract)) in clear_lockup() 264 dev->testTable[vcc->vci]->lastTime = tempCellSlot; in clear_lockup() 265 dev->testTable[vcc->vci]->fract = tempFract; in clear_lockup() 281 shd_tbl[i] = vcc->vci; in clear_lockup() [all …]
|
D | fore200e.c | 772 struct atm_vcc* vcc; in fore200e_tx_irq() local 799 if ((vc_map->vcc == NULL) || in fore200e_tx_irq() 800 (test_bit(ATM_VF_READY, &vc_map->vcc->flags) == 0)) { in fore200e_tx_irq() 808 ASSERT(vc_map->vcc); in fore200e_tx_irq() 831 vcc = vc_map->vcc; in fore200e_tx_irq() 832 ASSERT(vcc); in fore200e_tx_irq() 835 if (vcc->pop) { in fore200e_tx_irq() 836 vcc->pop(vcc, entry->skb); in fore200e_tx_irq() 844 atomic_inc(&vcc->stats->tx_err); in fore200e_tx_irq() 846 atomic_inc(&vcc->stats->tx); in fore200e_tx_irq() [all …]
|
D | adummy.c | 90 adummy_open(struct atm_vcc *vcc) in adummy_open() argument 92 short vpi = vcc->vpi; in adummy_open() 93 int vci = vcc->vci; in adummy_open() 98 set_bit(ATM_VF_ADDR, &vcc->flags); in adummy_open() 99 set_bit(ATM_VF_READY, &vcc->flags); in adummy_open() 105 adummy_close(struct atm_vcc *vcc) in adummy_close() argument 107 clear_bit(ATM_VF_READY, &vcc->flags); in adummy_close() 108 clear_bit(ATM_VF_ADDR, &vcc->flags); in adummy_close() 112 adummy_send(struct atm_vcc *vcc, struct sk_buff *skb) in adummy_send() argument 114 if (vcc->pop) in adummy_send() [all …]
|
D | nicstar.c | 126 static void free_scq(ns_dev *card, scq_info * scq, struct atm_vcc *vcc); 129 static int ns_open(struct atm_vcc *vcc); 130 static void ns_close(struct atm_vcc *vcc); 132 static int ns_send(struct atm_vcc *vcc, struct sk_buff *skb); 133 static int ns_send_bh(struct atm_vcc *vcc, struct sk_buff *skb); 900 static void free_scq(ns_dev *card, scq_info *scq, struct atm_vcc *vcc) in free_scq() argument 907 vcc = ATM_SKB(scq->skb[i])->vcc; in free_scq() 908 if (vcc->pop != NULL) in free_scq() 909 vcc->pop(vcc, scq->skb[i]); in free_scq() 915 if (vcc == NULL) { in free_scq() [all …]
|
D | idt77252.c | 122 static int idt77252_open(struct atm_vcc *vcc); 123 static void idt77252_close(struct atm_vcc *vcc); 124 static int idt77252_send(struct atm_vcc *vcc, struct sk_buff *skb); 125 static int idt77252_send_oam(struct atm_vcc *vcc, void *cell, 130 static int idt77252_change_qos(struct atm_vcc *vcc, struct atm_qos *qos, 549 struct atm_vcc *vcc; in idt77252_tx_dump() local 559 vcc = NULL; in idt77252_tx_dump() 561 vcc = vc->rx_vcc; in idt77252_tx_dump() 563 vcc = vc->tx_vcc; in idt77252_tx_dump() 565 if (!vcc) in idt77252_tx_dump() [all …]
|
D | he.c | 98 static int he_open(struct atm_vcc *vcc); 99 static void he_close(struct atm_vcc *vcc); 100 static int he_send(struct atm_vcc *vcc, struct sk_buff *skb); 331 struct atm_vcc *vcc; in __find_vcc() local 341 vcc = atm_sk(s); in __find_vcc() 342 if (vcc->dev == he_dev->atm_dev && in __find_vcc() 343 vcc->vci == vci && vcc->vpi == vpi && in __find_vcc() 344 vcc->qos.rxtp.traffic_class != ATM_NONE) { in __find_vcc() 345 return vcc; in __find_vcc() 1646 struct atm_vcc *vcc = NULL; in he_service_rbrq() local [all …]
|
/linux-6.1.9/include/linux/ |
D | atmdev.h | 104 void (*release_cb)(struct atm_vcc *vcc); /* release_sock callback */ 105 void (*push)(struct atm_vcc *vcc,struct sk_buff *skb); 106 void (*pop)(struct atm_vcc *vcc,struct sk_buff *skb); /* optional */ 107 int (*push_oam)(struct atm_vcc *vcc,void *cell); 108 int (*send)(struct atm_vcc *vcc,struct sk_buff *skb); 135 static inline struct sock *sk_atm(struct atm_vcc *vcc) in sk_atm() argument 137 return (struct sock *)vcc; in sk_atm() 181 int (*open)(struct atm_vcc *vcc); 182 void (*close)(struct atm_vcc *vcc); 188 int (*send)(struct atm_vcc *vcc,struct sk_buff *skb); [all …]
|
/linux-6.1.9/drivers/usb/atm/ |
D | usbatm.c | 135 struct atm_vcc *vcc; member 156 static int usbatm_atm_open(struct atm_vcc *vcc); 157 static void usbatm_atm_close(struct atm_vcc *vcc); 159 static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb); 183 static inline void usbatm_pop(struct atm_vcc *vcc, struct sk_buff *skb) in usbatm_pop() argument 185 if (vcc->pop) in usbatm_pop() 186 vcc->pop(vcc, skb); in usbatm_pop() 293 struct atm_vcc *vcc; in usbatm_extract_one_cell() local 312 vcc = instance->cached_vcc->vcc; in usbatm_extract_one_cell() 319 atomic_inc(&vcc->stats->rx_err); in usbatm_extract_one_cell() [all …]
|
/linux-6.1.9/arch/arm64/boot/dts/allwinner/ |
D | sun50i-a100-allwinner-perf1.dts | 24 vcc-pb-supply = <®_dcdc1>; 25 vcc-pc-supply = <®_eldo1>; 26 vcc-pd-supply = <®_dcdc1>; 27 vcc-pe-supply = <®_dldo2>; 28 vcc-pf-supply = <®_dcdc1>; 29 vcc-pg-supply = <®_dldo1>; 30 vcc-ph-supply = <®_dcdc1>; 39 * vcc-pl-supply = <®_aldo3>; 65 regulator-name = "vcc-pll-avcc"; 72 regulator-name = "vcc-dram-1"; [all …]
|
D | sun50i-a64-olinuxino.dts | 167 vcc-pc-supply = <®_dcdc1>; 168 vcc-pd-supply = <®_dcdc1>; 169 vcc-pe-supply = <®_aldo1>; 170 vcc-pg-supply = <®_dldo4>; 179 * vcc-pl-supply = <®_aldo2>; 184 vcc-pa-supply = <®_dcdc1>; 185 vcc-pb-supply = <®_dcdc1>; 186 vcc-pc-supply = <®_dcdc1>; 187 vcc-pd-supply = <®_dcdc1>; 188 vcc-pe-supply = <®_aldo1>; [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/iio/frequency/ |
D | adi,admv1014.yaml | 42 vcc-if-bb-supply: 46 vcc-vga-supply: 50 vcc-vva-supply: 54 vcc-lna-3p3-supply: 58 vcc-lna-1p5-supply: 62 vcc-bg-supply: 66 vcc-quad-supply: 70 vcc-mixer-supply: 121 vcc-if-bb-supply = <&vcc_if_bb>; 122 vcc-vga-supply = <&vcc_vga>; [all …]
|
/linux-6.1.9/drivers/leds/ |
D | leds-regulator.c | 27 struct regulator *vcc; member 66 ret = regulator_enable(led->vcc); in regulator_led_enable() 82 ret = regulator_disable(led->vcc); in regulator_led_disable() 106 voltage = led_regulator_get_voltage(led->vcc, value); in regulator_led_brightness_set() 110 ret = regulator_set_voltage(led->vcc, voltage, voltage); in regulator_led_brightness_set() 130 struct regulator *vcc; in regulator_led_probe() local 133 vcc = devm_regulator_get_exclusive(dev, "vled"); in regulator_led_probe() 134 if (IS_ERR(vcc)) { in regulator_led_probe() 136 return PTR_ERR(vcc); in regulator_led_probe() 145 led->cdev.max_brightness = led_regulator_get_max_brightness(vcc); in regulator_led_probe() [all …]
|
/linux-6.1.9/arch/arm/boot/dts/ |
D | sunxi-libretech-all-h3-it.dtsi | 57 reg_vcc_dram: vcc-dram { 59 regulator-name = "vcc-dram"; 69 reg_vcc_io: vcc-io { 71 regulator-name = "vcc-io"; 79 reg_vcc_usbwifi: vcc-usbwifi { 81 regulator-name = "vcc-usbwifi"; 144 vcc-pa-supply = <®_vcc_io>; 145 vcc-pc-supply = <®_vcc_io>; 146 vcc-pd-supply = <®_vcc_io>; 147 vcc-pe-supply = <®_vcc_io>; [all …]
|