Searched refs:scc (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/hamradio/
H A Dscc.c1 #define RCS_ID "$Id: scc.c,v 1.1.1.1 2007-08-03 18:52:47 $"
170 #include <linux/scc.h>
201 static void init_channel(struct scc_channel *scc);
202 static void scc_key_trx (struct scc_channel *scc, char tx);
204 static void scc_init_timer(struct scc_channel *scc);
206 static int scc_net_alloc(const char *name, struct scc_channel *scc);
210 static void scc_net_rx(struct scc_channel *scc, struct sk_buff *skb);
216 static unsigned char SCC_DriverName[] = "scc";
275 static inline void wr(struct scc_channel *scc, unsigned char reg, argument
278 OutReg(scc
281 or(struct scc_channel *scc, unsigned char reg, unsigned char val) argument
286 cl(struct scc_channel *scc, unsigned char reg, unsigned char val) argument
295 scc_discard_buffers(struct scc_channel *scc) argument
321 scc_notify(struct scc_channel *scc, int event) argument
340 flush_rx_FIFO(struct scc_channel *scc) argument
355 start_hunt(struct scc_channel *scc) argument
366 scc_txint(struct scc_channel *scc) argument
430 scc_exint(struct scc_channel *scc) argument
515 scc_rxint(struct scc_channel *scc) argument
563 scc_spint(struct scc_channel *scc) argument
609 scc_isr_dispatch(struct scc_channel *scc, int vector) argument
632 struct scc_channel *scc; local
717 set_brg(struct scc_channel *scc, unsigned int tc) argument
725 set_speed(struct scc_channel *scc) argument
739 init_brg(struct scc_channel *scc) argument
791 init_channel(struct scc_channel *scc) argument
897 scc_key_trx(struct scc_channel *scc, char tx) argument
994 __scc_start_tx_timer(struct scc_channel *scc, void (*handler)(unsigned long), unsigned long when) argument
1011 scc_start_tx_timer(struct scc_channel *scc, void (*handler)(unsigned long), unsigned long when) argument
1020 scc_start_defer(struct scc_channel *scc) argument
1037 scc_start_maxkeyup(struct scc_channel *scc) argument
1059 scc_tx_done(struct scc_channel *scc) argument
1086 is_grouped(struct scc_channel *scc) argument
1124 struct scc_channel *scc = (struct scc_channel *) channel; local
1166 struct scc_channel *scc = (struct scc_channel *) channel; local
1187 struct scc_channel *scc = (struct scc_channel *) channel; local
1214 struct scc_channel *scc = (struct scc_channel *) channel; local
1233 struct scc_channel *scc = (struct scc_channel *) channel; local
1267 struct scc_channel *scc = (struct scc_channel *) channel; local
1277 scc_init_timer(struct scc_channel *scc) argument
1298 scc_set_param(struct scc_channel *scc, unsigned int cmd, unsigned int arg) argument
1366 scc_get_param(struct scc_channel *scc, unsigned int cmd) argument
1399 struct scc_channel *scc = (struct scc_channel *) channel; local
1416 scc_start_calibrate(struct scc_channel *scc, int duration, unsigned char pattern) argument
1457 struct scc_channel *scc; local
1510 scc_net_alloc(const char *name, struct scc_channel *scc) argument
1576 struct scc_channel *scc = (struct scc_channel *) dev->priv; local
1594 struct scc_channel *scc = (struct scc_channel *) dev->priv; local
1615 scc_net_rx(struct scc_channel *scc, struct sk_buff *skb) argument
1636 struct scc_channel *scc = (struct scc_channel *) dev->priv; local
1706 struct scc_channel *scc = (struct scc_channel *) dev->priv; local
1951 struct scc_channel *scc = (struct scc_channel *) dev->priv; local
1989 struct scc_channel *scc = v; local
2013 const struct scc_channel *scc = v; local
2126 struct scc_channel *scc; local
[all...]
H A DMakefile14 obj-$(CONFIG_SCC) += scc.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dsb_card.c98 static int sb_register_oss(struct sb_card_config *scc, struct sb_module_options *sbmo) argument
100 if (!request_region(scc->conf.io_base, 16, "soundblaster")) {
102 kfree(scc);
106 if (!sb_dsp_detect(&scc->conf, 0, 0, sbmo)) {
107 release_region(scc->conf.io_base, 16);
109 kfree(scc);
112 if(!sb_dsp_init(&scc->conf, THIS_MODULE)) {
114 kfree(scc);
117 if(scc->mpucnf.io_base > 0) {
118 scc
127 sb_unload(struct sb_card_config *scc) argument
166 sb_dev2cfg(struct pnp_dev *dev, struct sb_card_config *scc) argument
241 struct sb_card_config *scc; local
274 struct sb_card_config *scc = pnp_get_card_drvdata(card); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/fs_enet/
H A DMakefile7 obj-$(CONFIG_8xx) += mac-fec.o mac-scc.o mii-fec.o
H A Dmac-scc.c96 ch = fep->scc.idx << 2;
122 fep->scc.sccp = ioremap(r->start, r->end - r->start + 1);
124 if (fep->scc.sccp == NULL)
128 fep->scc.ep = ioremap(r->start, r->end - r->start + 1);
130 if (fep->scc.ep == NULL)
146 fep->scc.idx = fs_get_scc_index(fpi->fs_no);
152 fep->scc.hthi = 0;
153 fep->scc.htlo = 0;
194 scc_t *sccp = fep->scc.sccp;
202 scc_enet_t *ep = fep->scc
[all...]
H A Dfs_enet.h182 } scc; member in union:fs_enet_private::__anon5496
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/mac/
H A Ddebug.c143 # define scc (*((volatile struct mac_SCC*)mac_bi_data.sccbase)) macro
193 } while (!(scc.cha_b_ctrl & 0x04)); /* wait for tx buf empty */
196 scc.cha_b_data = c;
206 } while (!(scc.cha_a_ctrl & 0x04)); /* wait for tx buf empty */
209 scc.cha_a_data = c;
239 scc.cha_b_ctrl = (reg); \
242 scc.cha_b_ctrl = (val); \
250 scc.cha_a_ctrl = (reg); \
253 scc.cha_a_ctrl = (val); \
307 (void)scc
[all...]
H A Dmacints.c469 volatile unsigned char *scc = (unsigned char *) mac_bi_data.sccbase + 2; local
477 *scc = 3;
478 reg = *scc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/atari/
H A Ddebug.c58 } while (!(scc.cha_b_ctrl & 0x04)); /* wait for tx buf empty */
60 scc.cha_b_data = c;
145 } while (!(scc.cha_b_ctrl & 0x01)); /* wait for rx buf filled */
147 return scc.cha_b_data;
196 scc.cha_b_ctrl = (reg); \
198 scc.cha_b_ctrl = (val); \
255 (void)scc.cha_b_ctrl; /* reset reg pointer */
H A Dataints.c198 scc.cha_a_ctrl = 9;
200 scc.cha_a_ctrl = (char) 0xc0; /* hardware reset */
H A Dconfig.c305 if (scc_test(&scc.cha_a_ctrl)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/txn/
H A DDBWriter.java42 DBWriter(Environment env, Database db, StoredClassCatalog scc, argument
48 dataBinding = new SerialBinding(scc, PayloadData.class);
54 DBWriter(Environment env, Database db, StoredClassCatalog scc) argument
59 dataBinding = new SerialBinding(scc, PayloadData.class);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/atl1/
H A Datl1.h148 u64 scc; /* num packets subsequently transmitted successfully w/ single prior collision. */ member in struct:atl1_sft_stats
H A Datl1_ethtool.c66 {"tx_single_coll_ok", ATL1_STAT(soft_stats.scc)},
H A Datl1_main.c329 adapter->soft_stats.scc += smb->tx_1_col;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/jmr3927/
H A Dtx3927.h93 endian_def_b4(cc, scc, rpli, rid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68knommu/
H A Dm68360_quicc.h68 } pscc; /* scc parameter area (protocol dependent) */
85 } scc; member in union:quicc::__anon9114
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/jmr3927/
H A Dtx3927.h93 endian_def_b4(cc, scc, rpli, rid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/serial/
H A D68360serial.c699 scup = &pquicc->pram[info->state->port].scc.pscc.u;
725 up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
2063 up = &pquicc->pram[ser->port].scc.pothers.idma_smc.psmc.u;
2207 up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
2592 sup = &pquicc->pram[info->state->port].scc.pscc.u;
2657 up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
2828 sup = &pquicc->pram[ser->port].scc.pscc.u;
2887 up = &pquicc->pram[ser->port].scc.pothers.idma_smc.psmc.u;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ata/
H A Dsata_mv.c2320 u8 rev_id, scc; local
2325 pci_read_config_byte(pdev, PCI_CLASS_DEVICE, &scc);
2326 if (scc == 0)
2328 else if (scc == 0x01)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ppc/
H A D8xx_immap.h363 typedef struct scc { /* Serial communication channels */ struct
H A Dimmap_cpm2.h457 typedef struct scc { /* Serial communication channels */ struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Datarihw.h453 # define scc ((*(volatile struct SCC*)SCC_BAS)) macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dsiutils.c2811 uint32 scc; local
2866 scc = R_REG(sii->osh, &cc->slow_clk_ctl);
2867 scc &= ~(SCC_FS | SCC_IP | SCC_XC);
2868 if ((scc & SCC_SS_MASK) != SCC_SS_XTAL)
2869 scc |= SCC_XC;
2870 W_REG(sii->osh, &cc->slow_clk_ctl, scc);
2873 if (scc & SCC_XC)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/e1000/
H A De1000_ethtool.c85 { "tx_single_coll_ok", E1000_STAT(stats.scc) },

Completed in 312 milliseconds

12