HomeSort by: relevance | last modified time | path
    Searched defs:apd (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/dev/isapnp/
aha_isapnp.c 77 struct aha_probe_data apd; local in function:aha_isapnp_attach
93 if (!aha_find(sc->sc_iot, sc->sc_ioh, &apd)) {
99 if (apd.sc_drq != -1) {
104 } else if (apd.sc_drq != ipa->ipa_drq[0].num) {
106 apd.sc_drq, ipa->ipa_drq[0].num);
117 if (apd.sc_irq != ipa->ipa_irq[0].num) {
119 apd.sc_irq, ipa->ipa_irq[0].num);
132 aha_attach(sc, &apd);
  /src/sys/dev/mca/
aha_mca.c 105 struct aha_probe_data apd; local in function:aha_mca_attach
143 apd.sc_irq = (ma->ma_pos[4] & 0x7) + 8;
144 apd.sc_drq = ma->ma_pos[5] & 0xf;
145 apd.sc_scsi_dev = (ma->ma_pos[4] & 0xe0) >> 5;
149 apd.sc_irq, apd.sc_drq);
168 sc->sc_ih = mca_intr_establish(mc, apd.sc_irq, IPL_BIO, aha_intr, sc);
174 aha_attach(sc, &apd);
  /src/sys/dev/isa/
aha_isa.c 71 struct aha_probe_data apd; local in function:aha_isa_probe
91 rv = aha_find(iot, ioh, &apd);
97 ia->ia_irq[0].ir_irq != apd.sc_irq)
100 ia->ia_drq[0].ir_drq != apd.sc_drq)
107 ia->ia_irq[0].ir_irq = apd.sc_irq;
110 ia->ia_drq[0].ir_drq = apd.sc_drq;
127 struct aha_probe_data apd; local in function:aha_isa_attach
143 if (!aha_find(iot, ioh, &apd)) {
148 if (apd.sc_drq != -1) {
149 if ((error = isa_dmacascade(ic, apd.sc_drq)) != 0)
    [all...]
ym.c 344 uint8_t dpd, apd; local in function:ym_init
382 apd = SA3_APWRDWN_SBDAC; /* we never use SB */
387 apd |= SA3_APWRDWN_FMDAC;
395 ym_write(sc, SA3_APWRDWN, apd);
  /src/usr.sbin/emcfanctl/
emcfanctlconst.h 43 .cmd = "apd",
3442 static const struct emcfan_bits_translate apd[] = { variable in typeref:typename:const struct emcfan_bits_translate[]
  /src/sys/dev/
cgd_crypto.c 172 struct aes_privdata *apd = data; local in function:cgd_cipher_aes_cbc_destroy
174 explicit_memset(apd, 0, sizeof(*apd));
175 kmem_free(apd, sizeof(*apd));
182 struct aes_privdata *apd = privdata; local in function:cgd_cipher_aes_cbc
186 aes_enc(&apd->ap_enckey, blkno, iv, apd->ap_nrounds);
190 aes_cbc_enc(&apd->ap_enckey, src, dst, nbytes, iv,
191 apd->ap_nrounds)
    [all...]
  /src/sys/dev/eisa/
ahb.c 195 struct ahb_probe_data apd; local in function:ahbattach
216 if (ahb_find(iot, ioh, &apd))
241 chan->chan_id = apd.sc_scsi_dev;
248 if (eisa_intr_map(ec, apd.sc_irq, &ih)) {
250 apd.sc_irq);
254 sc->sc_ih = eisa_intr_establish(ec, ih, apd.sc_ist, IPL_BIO,
266 apd.sc_ist == IST_EDGE ? "edge" : "level");
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_acp.c 134 struct acp_pm_domain *apd; local in function:acp_poweroff
137 apd = container_of(genpd, struct acp_pm_domain, gpd);
138 if (apd != NULL) {
139 adev = apd->adev;
155 struct acp_pm_domain *apd; local in function:acp_poweron
158 apd = container_of(genpd, struct acp_pm_domain, gpd);
159 if (apd != NULL) {
160 adev = apd->adev;

Completed in 70 milliseconds