Searched refs:ale (Results 1 - 22 of 22) sorted by path

/freebsd-11-stable/sys/arm/at91/
H A Dboard_hl201.c60 .ale = 1u << 21,
H A Dboard_sam9260ek.c64 .ale = 1u << 21,
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-compactflash.c419 mio_boot_reg_tim.s.ale = 8; /* If someone uses ALE, this seems to work */
H A Dcvmx-mio-defs.h2406 uint64_t ale : 1; /**< Region 0 default ALE mode */ member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_s
2422 uint64_t ale : 1;
2430 uint64_t ale : 1; /**< Region 0 default ALE mode */ member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn52xx
2446 uint64_t ale : 1;
2453 uint64_t ale : 1; /**< Region 0 default ALE mode */ member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn56xx
2467 uint64_t ale : 1;
2475 uint64_t ale : 1; /**< Region 0 default ALE mode */ member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn61xx
2491 uint64_t ale : 1;
2521 uint64_t ale : 1; /**< Region X ALE mode */ member in struct:cvmx_mio_boot_reg_cfgx::cvmx_mio_boot_reg_cfgx_s
2529 uint64_t ale
2549 uint64_t ale : 1; /**< Region X ALE mode */ member in struct:cvmx_mio_boot_reg_cfgx::cvmx_mio_boot_reg_cfgx_cn30xx
2595 uint64_t ale : 1; /**< Region X ALE mode */ member in struct:cvmx_mio_boot_reg_cfgx::cvmx_mio_boot_reg_cfgx_cn50xx
2640 uint64_t ale : 6; /**< Region X ALE count */ member in struct:cvmx_mio_boot_reg_timx::cvmx_mio_boot_reg_timx_s
[all...]
H A Dcvmx-nand.c915 if (cmd.ale.adr_byte_num < 5)
1074 cmd.ale.adr_byte_num = num_address_cycles;
1077 cmd.ale.adr_bytes_l = nand_address;
1078 cmd.ale.adr_bytes_h = nand_address >> 32;
1086 cmd.ale.adr_bytes_l = column + (row << column_shift);
1087 cmd.ale.adr_bytes_h = row >> (32 - column_shift);
1089 cmd.ale.alen1 = cvmx_nand_state[chip].alen[0];
1090 cmd.ale.alen2 = cvmx_nand_state[chip].alen[1];
1091 cmd.ale.alen3 = cvmx_nand_state[chip].alen[2];
1092 cmd.ale
[all...]
H A Dcvmx-nand.h370 cvmx_nand_cmd_ale_t ale; member in union:__anon8653
/freebsd-11-stable/sys/dev/ale/
H A Dif_ale.c73 #include <dev/ale/if_alereg.h>
74 #include <dev/ale/if_alevar.h>
82 MODULE_DEPEND(ale, pci, 1, 1, 1);
83 MODULE_DEPEND(ale, ether, 1, 1, 1);
84 MODULE_DEPEND(ale, miibus, 1, 1, 1);
89 TUNABLE_INT("hw.ale.msi_disable", &msi_disable);
90 TUNABLE_INT("hw.ale.msix_disable", &msix_disable);
171 "ale",
178 DRIVER_MODULE(ale, pci, ale_driver, ale_devclass, NULL, NULL);
179 DRIVER_MODULE(miibus, ale, miibus_drive
[all...]
/freebsd-11-stable/sys/dev/ath/
H A Dah_osdep.c243 static struct ale *
246 struct ale *ale; local
249 ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
250 if (ale) {
252 (struct athregrec *) ale->ae_data;
256 alq_post(ath_hal_alq, ale);
261 ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
262 if (!ale)
264 return ale;
283 struct ale *ale = ath_hal_alq_get(ah); local
324 struct ale *ale = ath_hal_alq_get(ah); local
341 struct ale *ale = ath_hal_alq_get(ah); local
[all...]
H A Dif_ath_alq.c52 static struct ale *
55 struct ale *ale; local
60 ale = alq_getn(alq->sc_alq_alq, len, ALQ_NOWAIT);
61 if (! ale)
63 return (ale);
156 struct ale *ale; local
172 ale = if_ath_alq_get(alq, len + sizeof(struct if_ath_alq_hdr));
174 if (ale
[all...]
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_at91.c75 * ale (Address Latch Enable) and cle (Comand Latch Enable) to match the hardware
177 dev_write_1(sc, sc->nand_param->ale, addr);
H A Dnfc_at91.h40 uint32_t ale; /* Address for ALE (address) NAND cycles */ member in struct:at91_nand_params
H A Dnfc_rb.c165 uint32_t ale[2],cle[2],nce[2],rdy[2]; local
172 if (OF_getprop(node, "ale", ale, sizeof(ale)) <= 0) {
185 if (ale[0] != cle[0] || ale[0] != nce[0] || ale[0] != rdy[0]) {
189 sc->sc_ale_pin = ale[1];
194 sc->sc_gpio = OF_device_from_xref(ale[0]);
/freebsd-11-stable/sys/kern/
H A Dkern_alq.c71 struct ale aq_getpost; /* ALE for use by get/post */
674 struct ale *
818 struct ale *
828 alq_post_flags(struct alq *alq, struct ale *ale, int flags) argument
835 if (ale->ae_bytesused > 0) {
842 alq->aq_writehead += ale->ae_bytesused;
843 alq->aq_freebytes -= ale->ae_bytesused;
H A Dkern_ktr.c317 struct ale *ale = NULL; local
345 if ((ale = alq_get(ktr_alq, ALQ_NOWAIT)) == NULL) {
350 entry = (struct ktr_entry *)ale->ae_data;
392 if (ktr_alq_enabled && ale)
393 alq_post(ktr_alq, ale);
/freebsd-11-stable/sys/modules/ale/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/ale/Makefile 319182 2017-05-30 04:11:12Z ngie $
3 .PATH: ${SRCTOP}/sys/dev/ale
/freebsd-11-stable/sys/net80211/
H A Dieee80211_alq.c122 static struct ale *
125 struct ale *ale; local
127 ale = alq_get(ieee80211_alq, ALQ_NOWAIT);
128 if (!ale)
132 return ale;
138 struct ale *ale; local
144 ale = ieee80211_alq_get();
145 if (! ale)
[all...]
/freebsd-11-stable/sys/sys/
H A Dalq.h49 struct ale { struct
120 * The next available ale on success.
127 struct ale *alq_getn(struct alq *alq, int len, int flags);
128 struct ale *alq_get(struct alq *alq, int flags);
131 * alq_post_flags: Schedule the ale retrieved by alq_get/alq_getn for writing.
133 * ale An asynch logging entry returned by alq_get.
136 void alq_post_flags(struct alq *alq, struct ale *ale, int flags);
139 alq_post(struct alq *alq, struct ale *ale) argument
[all...]
/freebsd-11-stable/tools/tools/crypto/
H A Dcryptokeytest.c129 u_int8_t *ale, *ble, *cle; local
135 if ((ale = bignum_to_le(a, NULL)) == NULL)
147 kop.crk_param[0].crp_p = ale;
161 bzero(ale, BN_num_bytes(a));
162 free(ale);
/freebsd-11-stable/share/man/man4/
H A DMakefile40 ale.4 \
614 MLINKS+=ale.4 if_ale.4
/freebsd-11-stable/sys/conf/
H A DmakeLINT.mk43 echo "nodevice ale" >> ${.TARGET}-NOIP
/freebsd-11-stable/sys/modules/
H A DMakefile37 ale \
/freebsd-11-stable/sys/netinet/
H A Dsiftr.c333 struct ale *log_buf;

Completed in 296 milliseconds