Home
last modified time | relevance | path

Searched full:ale (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd/sys/dev/ath/
H A Dah_osdep.c246 static struct ale *
249 struct ale *ale; in ath_hal_alq_get() local
252 ale = alq_get(ath_hal_alq, ALQ_NOWAIT); in ath_hal_alq_get()
253 if (ale) { in ath_hal_alq_get()
255 (struct athregrec *) ale->ae_data; in ath_hal_alq_get()
259 alq_post(ath_hal_alq, ale); in ath_hal_alq_get()
264 ale = alq_get(ath_hal_alq, ALQ_NOWAIT); in ath_hal_alq_get()
265 if (!ale) in ath_hal_alq_get()
267 return ale; in ath_hal_alq_get()
286 struct ale *ale = ath_hal_alq_get(ah); in ath_hal_reg_write() local
[all …]
H A Dif_ath_alq.c52 static struct ale *
55 struct ale *ale; in if_ath_alq_get() local
60 ale = alq_getn(alq->sc_alq_alq, len, ALQ_NOWAIT); in if_ath_alq_get()
61 if (! ale) in if_ath_alq_get()
63 return (ale); in if_ath_alq_get()
156 struct ale *ale; in if_ath_alq_post() local
172 ale = if_ath_alq_get(alq, len + sizeof(struct if_ath_alq_hdr)); in if_ath_alq_post()
174 if (ale == NULL) in if_ath_alq_post()
177 ap = (struct if_ath_alq_hdr *) ale->ae_data; in if_ath_alq_post()
193 alq_post(alq->sc_alq_alq, ale); in if_ath_alq_post()
/freebsd/sys/sys/
H A Dalq.h50 struct ale { struct
51 intptr_t ae_bytesused; /* # bytes written to ALE. */
121 * The next available ale on success.
128 struct ale *alq_getn(struct alq *alq, int len, int flags);
129 struct ale *alq_get(struct alq *alq, int flags);
132 * alq_post_flags: Schedule the ale retrieved by alq_get/alq_getn for writing.
134 * ale An asynch logging entry returned by alq_get.
137 void alq_post_flags(struct alq *alq, struct ale *ale, int flags);
140 alq_post(struct alq *alq, struct ale *ale) in alq_post() argument
142 alq_post_flags(alq, ale, 0); in alq_post()
/freebsd/sys/net80211/
H A Dieee80211_alq.c120 static struct ale *
123 struct ale *ale; in ieee80211_alq_get() local
125 ale = alq_getn(ieee80211_alq, len + sizeof(struct ieee80211_alq_rec), in ieee80211_alq_get()
127 if (!ale) in ieee80211_alq_get()
131 return ale; in ieee80211_alq_get()
139 struct ale *ale; in ieee80211_alq_log() local
150 ale = ieee80211_alq_get(len); in ieee80211_alq_log()
151 if (! ale) in ieee80211_alq_log()
154 r = (struct ieee80211_alq_rec *) ale->ae_data; in ieee80211_alq_log()
171 alq_post(ieee80211_alq, ale); in ieee80211_alq_log()
/freebsd/share/man/man4/
H A Dale.429 .Nm ale
37 .Cd "device ale"
114 .It Va hw.ale.msi_disable
117 .It Va hw.ale.msix_disable
128 .It Va dev.ale.%d.int_rx_mod
133 .It Va dev.ale.%d.int_tx_mod
138 .It Va dev.ale.%d.process_limit
H A Dmiibus.452 .It Xr ale 4
132 .Xr ale 4 ,
/freebsd/share/man/man9/
H A Dalq.981 .Fn alq_post_flags "struct alq *alq" "struct ale *ale" "int flags"
83 .Fn alq_post "struct alq *alq" "struct ale *ale"
103 .Vt "struct ale" ,
106 struct ale {
107 intptr_t ae_bytesused; /* # bytes written to ALE. */
317 .Fa ale
/freebsd/sys/contrib/device-tree/Bindings/mtd/
H A Dorion-nand.txt10 - ale : Address line number connected to ALE. Default is 1
24 ale = <1>;
H A Ddavinci-nand.txt27 - ti,davinci-mask-ale: mask for ALE. Needed for executing address
83 ti,davinci-mask-ale = <0>;
H A Dti,davinci-nand.yaml36 ti,davinci-mask-ale:
38 Mask for ALE. Needed for executing address phase. These offset will be
104 ti,davinci-mask-ale = <0>;
H A Dgpio-control-nand.txt15 GPIO references is: RDY, nCE, ALE, CLE, and nWP. nCE and nWP are optional.
40 <&banka 3 0>, /* ALE */
H A Datmel-nand.txt169 atmel,nand-addr-offset = <21>; /* ale */
192 atmel,nand-addr-offset = <21>; /* ale */
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dts-nbus.txt15 - ts,ale-gpios : The GPIO pin connected to the ale line on the FPGA
42 ts,ale-gpios = <&gpio0 26 GPIO_ACTIVE_HIGH>;
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dlantiq,pinctrl-xway.txt56 ebu wait, nand ale, nand cs1, nand cle, spi_di, spi_do, spi_clk, spi_cs1,
67 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
79 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
93 exin0, exin1, exin2, exin4, nand ale, nand cs0, nand cs1, nand cle,
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dmvebu-devbus.txt53 ALE[0] to the cycle that the first read data is sampled
85 - devbus,ale-wr-ps: Defines the time delay from the ALE[0] negation cycle
152 devbus,ale-wr-ps = <60000>;
/freebsd/sys/kern/
H A Dkern_ktr.c327 struct ale *ale = NULL; in ktr_tracepoint() local
355 if ((ale = alq_get(ktr_alq, ALQ_NOWAIT)) == NULL) { in ktr_tracepoint()
360 entry = (struct ktr_entry *)ale->ae_data; in ktr_tracepoint()
400 if (ktr_alq_enabled && ale) in ktr_tracepoint()
401 alq_post(ktr_alq, ale); in ktr_tracepoint()
H A Dkern_alq.c72 struct ale aq_getpost; /* ALE for use by get/post */
673 struct ale *
719 * Return a NULL ALE if: in alq_getn()
817 struct ale *
827 alq_post_flags(struct alq *alq, struct ale *ale, int flags) in alq_post_flags() argument
834 if (ale->ae_bytesused > 0) { in alq_post_flags()
841 alq->aq_writehead += ale->ae_bytesused; in alq_post_flags()
842 alq->aq_freebytes -= ale->ae_bytesused; in alq_post_flags()
/freebsd/tools/kerneldoc/subsys/
H A DDoxyfile-dev_ale6 PROJECT_NAME = "FreeBSD kernel ALE device code"
12 INPUT = $(DOXYGEN_SRC_PATH)/dev/ale/ \
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Dorion5x-rd88f5182-nas.dts56 devbus,ale-wr-ps = <90000>;
78 devbus,ale-wr-ps = <90000>;
/freebsd/sys/contrib/device-tree/Bindings/mips/cavium/
H A Dbootbus.txt62 - cavium,ale-mode: Optional. If present, ALE mode is selected.
/freebsd/contrib/bc/tests/bc/errors/
H A D30.txt1 ale--#80)
H A D21.txt4 return 74; b=123123123.239479823748;ale
/freebsd/sys/modules/ale/
H A DMakefile1 .PATH: ${SRCTOP}/sys/dev/ale
/freebsd/sys/amd64/conf/
H A DLINT-NOIP11 nodevice ale
/freebsd/sys/dev/ale/
H A Dif_ale.c72 #include <dev/ale/if_alereg.h>
73 #include <dev/ale/if_alevar.h>
81 MODULE_DEPEND(ale, pci, 1, 1, 1);
82 MODULE_DEPEND(ale, ether, 1, 1, 1);
83 MODULE_DEPEND(ale, miibus, 1, 1, 1);
88 TUNABLE_INT("hw.ale.msi_disable", &msi_disable);
89 TUNABLE_INT("hw.ale.msix_disable", &msix_disable);
170 "ale",
175 DRIVER_MODULE(ale, pci, ale_driver, NULL, NULL);
176 MODULE_PNP_INFO("U16:vendor;U16:device;D:#", pci, ale, ale_devs,
[all …]

1234