iPXE
Functions | Variables
ath9k.c File Reference
#include <ipxe/pci.h>
#include "ath9k.h"

Go to the source code of this file.

Functions

static void ath_pci_read_cachesize (struct ath_common *common, int *csz)
 
static int ath_pci_eeprom_read (struct ath_common *common, u32 off, u16 *data)
 
static void ath_pci_extn_synch_enable (struct ath_common *common)
 
static int ath_pci_probe (struct pci_device *pdev)
 
static void ath_pci_remove (struct pci_device *pdev)
 

Variables

static struct pci_device_id ath_pci_id_table []
 
static const struct ath_bus_ops ath_pci_bus_ops
 
struct pci_driver ath_pci_driver __pci_driver
 

Function Documentation

◆ ath_pci_read_cachesize()

static void ath_pci_read_cachesize ( struct ath_common common,
int *  csz 
)
static

Definition at line 40 of file ath9k.c.

41 {
42  struct ath_softc *sc = (struct ath_softc *) common->priv;
43  u8 u8tmp;
44 
46  *csz = (int)u8tmp;
47 
48  /*
49  * This check was put in to avoid "unpleasant" consequences if
50  * the bootrom has not fully initialized all PCI devices.
51  * Sometimes the cache line size register is not set
52  */
53 
54  if (*csz == 0)
55  *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
56 }
#define PCI_CACHE_LINE_SIZE
PCI cache line size.
Definition: pci.h:47
#define DEFAULT_CACHELINE
Definition: ath9k.h:353
struct ib_cm_common common
Definition: ib_mad.h:11
struct pci_device * pdev
Definition: ath9k.h:446
uint8_t u8
Definition: stdint.h:19
int pci_read_config_byte(struct pci_device *pci, unsigned int where, uint8_t *value)
Read byte from PCI configuration space.

References common, DEFAULT_CACHELINE, PCI_CACHE_LINE_SIZE, pci_read_config_byte(), and ath_softc::pdev.

◆ ath_pci_eeprom_read()

static int ath_pci_eeprom_read ( struct ath_common common,
u32  off,
u16 data 
)
static

Definition at line 58 of file ath9k.c.

59 {
60  struct ath_hw *ah = (struct ath_hw *) common->ah;
61 
62  common->ops->read(ah, AR5416_EEPROM_OFFSET +
63  (off << AR5416_EEPROM_S));
64 
65  if (!ath9k_hw_wait(ah,
69  AH_WAIT_TIMEOUT)) {
70  return 0;
71  }
72 
73  *data = MS(common->ops->read(ah, AR_EEPROM_STATUS_DATA),
75 
76  return 1;
77 }
Definition: hw.h:656
#define MS(_v, _f)
Definition: hw.h:102
#define AR_EEPROM_STATUS_DATA_VAL
Definition: reg.h:1087
#define AR_EEPROM_STATUS_DATA_PROT_ACCESS
Definition: reg.h:1091
#define AR_EEPROM_STATUS_DATA_BUSY
Definition: reg.h:1089
struct ib_cm_common common
Definition: ib_mad.h:11
#define AR_EEPROM_STATUS_DATA
Definition: reg.h:1085
int ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Definition: ath9k_hw.c:93
#define AH_WAIT_TIMEOUT
Definition: hw.h:145
uint8_t data[48]
Additional event data.
Definition: ena.h:22
uint8_t ah
Definition: registers.h:85
#define AR5416_EEPROM_S
Definition: eeprom.h:60
#define AR5416_EEPROM_OFFSET
Definition: eeprom.h:61

References ah, AH_WAIT_TIMEOUT, AR5416_EEPROM_OFFSET, AR5416_EEPROM_S, AR_EEPROM_STATUS_DATA, AR_EEPROM_STATUS_DATA_BUSY, AR_EEPROM_STATUS_DATA_PROT_ACCESS, AR_EEPROM_STATUS_DATA_VAL, ath9k_hw_wait(), common, data, and MS.

◆ ath_pci_extn_synch_enable()

static void ath_pci_extn_synch_enable ( struct ath_common common)
static

Definition at line 79 of file ath9k.c.

80 {
81  struct ath_softc *sc = (struct ath_softc *) common->priv;
82  struct pci_device *pdev = sc->pdev;
83  u8 lnkctl;
84 
86  lnkctl |= 0x0080;
88 }
struct ath_hw * sc_ah
Definition: ath9k.h:454
int pci_write_config_byte(struct pci_device *pci, unsigned int where, uint8_t value)
Write byte to PCI configuration space.
A PCI device.
Definition: pci.h:206
struct ib_cm_common common
Definition: ib_mad.h:11
struct pci_device * pdev
Definition: ath9k.h:446
struct ath9k_hw_capabilities caps
Definition: hw.h:663
u16 pcie_lcr_offset
Definition: hw.h:211
uint8_t u8
Definition: stdint.h:19
int pci_read_config_byte(struct pci_device *pci, unsigned int where, uint8_t *value)
Read byte from PCI configuration space.

References ath_hw::caps, common, pci_read_config_byte(), pci_write_config_byte(), ath9k_hw_capabilities::pcie_lcr_offset, ath_softc::pdev, and ath_softc::sc_ah.

◆ ath_pci_probe()

static int ath_pci_probe ( struct pci_device pdev)
static

Definition at line 97 of file ath9k.c.

98 {
99  void *mem;
100  struct ath_softc *sc;
101  struct net80211_device *dev;
102  u8 csz;
103  u16 subsysid;
104  u32 val;
105  int ret = 0;
106  char hw_name[64];
107 
108  adjust_pci_device(pdev);
109 
110  /*
111  * Cache line size is used to size and align various
112  * structures used to communicate with the hardware.
113  */
115  if (csz == 0) {
116  /*
117  * Linux 2.4.18 (at least) writes the cache line size
118  * register as a 16-bit wide register which is wrong.
119  * We must have this setup properly for rx buffer
120  * DMA to work so force a reasonable value here if it
121  * comes up zero.
122  */
123  csz =16;
125  }
126  /*
127  * The default setting of latency timer yields poor results,
128  * set it to the value used by other systems. It may be worth
129  * tweaking this setting more.
130  */
132 
133  /*
134  * Disable the RETRY_TIMEOUT register (0x41) to keep
135  * PCI Tx retries from interfering with C3 CPU state.
136  */
137  pci_read_config_dword(pdev, 0x40, &val);
138  if ((val & 0x0000ff00) != 0)
139  pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
140 
141  mem = pci_ioremap(pdev, pdev->membase, 0x10000);
142  if (!mem) {
143  DBG("ath9K: PCI memory map error\n") ;
144  ret = -EIO;
145  goto err_iomap;
146  }
147 
148  dev = net80211_alloc(sizeof(struct ath_softc));
149  if (!dev) {
150  DBG("ath9k: No memory for net80211_device\n");
151  ret = -ENOMEM;
152  goto err_alloc_hw;
153  }
154 
155  pci_set_drvdata(pdev, dev);
156  dev->netdev->dev = (struct device *)pdev;
157 
158  sc = dev->priv;
159  sc->dev = dev;
160  sc->pdev = pdev;
161  sc->mem = mem;
162 
163  /* Will be cleared in ath9k_start() */
164  sc->sc_flags |= SC_OP_INVALID;
165 
166  sc->irq = pdev->irq;
167 
168  pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &subsysid);
169  ret = ath9k_init_device(pdev->device, sc, subsysid, &ath_pci_bus_ops);
170  if (ret) {
171  DBG("ath9k: Failed to initialize device\n");
172  goto err_init;
173  }
174 
175  ath9k_hw_name(sc->sc_ah, hw_name, sizeof(hw_name));
176  DBG("ath9k: %s mem=0x%lx, irq=%d\n",
177  hw_name, (unsigned long)mem, pdev->irq);
178 
179  return 0;
180 
181 err_init:
182  net80211_free(dev);
183 err_alloc_hw:
184  iounmap(mem);
185 err_iomap:
186  return ret;
187 }
uint16_t u16
Definition: stdint.h:21
unsigned long membase
Memory base.
Definition: pci.h:215
uint8_t irq
Interrupt number.
Definition: pci.h:229
#define PCI_CACHE_LINE_SIZE
PCI cache line size.
Definition: pci.h:47
void net80211_free(struct net80211_device *dev)
Free 802.11 device.
Definition: net80211.c:838
int irq
Definition: ath9k.h:456
#define PCI_LATENCY_TIMER
PCI latency timer.
Definition: pci.h:50
int pci_read_config_word(struct pci_device *pci, unsigned int where, uint16_t *value)
Read 16-bit word from PCI configuration space.
void adjust_pci_device(struct pci_device *pci)
Enable PCI device.
Definition: pci.c:154
#define PCI_SUBSYSTEM_ID
PCI subsystem ID.
Definition: pci.h:78
struct net80211_device * dev
Definition: ath9k.h:445
static void pci_set_drvdata(struct pci_device *pci, void *priv)
Set PCI driver-private data.
Definition: pci.h:359
#define ENOMEM
Not enough space.
Definition: errno.h:534
A hardware device.
Definition: device.h:73
uint16_t device
Device ID.
Definition: pci.h:225
int pci_read_config_dword(struct pci_device *pci, unsigned int where, uint32_t *value)
Read 32-bit dword from PCI configuration space.
struct ath_hw * sc_ah
Definition: ath9k.h:454
void * priv
Driver private data.
Definition: net80211.h:798
struct net80211_device * net80211_alloc(size_t priv_size)
Allocate 802.11 device.
Definition: net80211.c:754
static const struct ath_bus_ops ath_pci_bus_ops
Definition: ath9k.c:90
int pci_write_config_byte(struct pci_device *pci, unsigned int where, uint8_t value)
Write byte to PCI configuration space.
Structure encapsulating the complete state of an 802.11 device.
Definition: net80211.h:786
u32 sc_flags
Definition: ath9k.h:465
#define SC_OP_INVALID
Definition: ath9k.h:362
struct pci_device * pdev
Definition: ath9k.h:446
void __asmcall int val
Definition: setjmp.h:28
struct device * dev
Underlying hardware device.
Definition: netdevice.h:364
struct net_device * netdev
The net_device that wraps us.
Definition: net80211.h:789
int ath9k_init_device(u16 devid, struct ath_softc *sc, u16 subsysid, const struct ath_bus_ops *bus_ops)
Definition: ath9k_init.c:486
#define EIO
Input/output error.
Definition: errno.h:433
int pci_write_config_dword(struct pci_device *pci, unsigned int where, uint32_t value)
Write 32-bit dword to PCI configuration space.
void iounmap(volatile const void *io_addr)
Unmap I/O address.
void * mem
Definition: ath9k.h:455
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
void * pci_ioremap(struct pci_device *pci, unsigned long bus_addr, size_t len)
Map PCI bus address as an I/O address.
void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
Definition: ath9k_hw.c:2045
uint8_t u8
Definition: stdint.h:19
uint32_t u32
Definition: stdint.h:23
int pci_read_config_byte(struct pci_device *pci, unsigned int where, uint8_t *value)
Read byte from PCI configuration space.

References adjust_pci_device(), ath9k_hw_name(), ath9k_init_device(), ath_pci_bus_ops, DBG, net_device::dev, ath_softc::dev, pci_device::device, EIO, ENOMEM, iounmap(), pci_device::irq, ath_softc::irq, ath_softc::mem, pci_device::membase, net80211_alloc(), net80211_free(), net80211_device::netdev, PCI_CACHE_LINE_SIZE, pci_ioremap(), PCI_LATENCY_TIMER, pci_read_config_byte(), pci_read_config_dword(), pci_read_config_word(), pci_set_drvdata(), PCI_SUBSYSTEM_ID, pci_write_config_byte(), pci_write_config_dword(), ath_softc::pdev, net80211_device::priv, ath_softc::sc_ah, ath_softc::sc_flags, SC_OP_INVALID, and val.

◆ ath_pci_remove()

static void ath_pci_remove ( struct pci_device pdev)
static

Definition at line 189 of file ath9k.c.

190 {
191  struct net80211_device *dev = pci_get_drvdata(pdev);
192  struct ath_softc *sc = dev->priv;
193  void *mem = sc->mem;
194 
195  if (!is_ath9k_unloaded)
196  sc->sc_ah->ah_flags |= AH_UNPLUGGED;
198  net80211_free(sc->dev);
199 
200  iounmap(mem);
201 }
void net80211_free(struct net80211_device *dev)
Free 802.11 device.
Definition: net80211.c:838
#define AH_UNPLUGGED
Definition: hw.h:654
int is_ath9k_unloaded
Definition: ath9k_init.c:29
struct net80211_device * dev
Definition: ath9k.h:445
struct ath_hw * sc_ah
Definition: ath9k.h:454
void * priv
Driver private data.
Definition: net80211.h:798
Structure encapsulating the complete state of an 802.11 device.
Definition: net80211.h:786
void ath9k_deinit_device(struct ath_softc *sc)
Definition: ath9k_init.c:577
u32 ah_flags
Definition: hw.h:687
static void * pci_get_drvdata(struct pci_device *pci)
Get PCI driver-private data.
Definition: pci.h:369
void iounmap(volatile const void *io_addr)
Unmap I/O address.
void * mem
Definition: ath9k.h:455

References ath_hw::ah_flags, AH_UNPLUGGED, ath9k_deinit_device(), ath_softc::dev, iounmap(), is_ath9k_unloaded, ath_softc::mem, net80211_free(), pci_get_drvdata(), net80211_device::priv, and ath_softc::sc_ah.

Variable Documentation

◆ ath_pci_id_table

struct pci_device_id ath_pci_id_table[]
static
Initial value:
= {
PCI_ROM(0x168c, 0x0023, "ar5416", "Atheros 5416 PCI", 0),
PCI_ROM(0x168c, 0x0024, "ar5416", "Atheros 5416 PCI-E", 0),
PCI_ROM(0x168c, 0x0027, "ar9160", "Atheros 9160 PCI", 0),
PCI_ROM(0x168c, 0x0029, "ar9280", "Atheros 9280 PCI", 0),
PCI_ROM(0x168c, 0x002A, "ar9280", "Atheros 9280 PCI-E", 0),
PCI_ROM(0x168c, 0x002B, "ar9285", "Atheros 9285 PCI-E", 0),
PCI_ROM(0x168c, 0x002C, "ar2427", "Atheros 2427 PCI-E", 0),
PCI_ROM(0x168c, 0x002D, "ar9287", "Atheros 9287 PCI", 0),
PCI_ROM(0x168c, 0x002E, "ar9287", "Atheros 9287 PCI-E", 0),
PCI_ROM(0x168c, 0x0030, "ar9300", "Atheros 9300 PCI-E", 0),
PCI_ROM(0x168c, 0x0032, "ar9485", "Atheros 9485 PCI-E", 0),
}
#define PCI_ROM(_vendor, _device, _name, _description, _data)
Definition: pci.h:303

Definition at line 24 of file ath9k.c.

◆ ath_pci_bus_ops

const struct ath_bus_ops ath_pci_bus_ops
static
Initial value:
= {
.ath_bus_type = ATH_PCI,
.read_cachesize = ath_pci_read_cachesize,
.eeprom_read = ath_pci_eeprom_read,
.extn_synch_en = ath_pci_extn_synch_enable,
}
static void ath_pci_extn_synch_enable(struct ath_common *common)
Definition: ath9k.c:79
Definition: ath.h:125
static void ath_pci_read_cachesize(struct ath_common *common, int *csz)
Definition: ath9k.c:40
static int ath_pci_eeprom_read(struct ath_common *common, u32 off, u16 *data)
Definition: ath9k.c:58

Definition at line 90 of file ath9k.c.

Referenced by ath_pci_probe().

◆ __pci_driver

struct pci_driver ath_pci_driver __pci_driver
Initial value:
= {
.probe = ath_pci_probe,
.remove = ath_pci_remove,
}
static struct pci_device_id ath_pci_id_table[]
Definition: ath9k.c:24
#define ARRAY_SIZE(x)
Definition: efx_common.h:43
static void ath_pci_remove(struct pci_device *pdev)
Definition: ath9k.c:189
static int ath_pci_probe(struct pci_device *pdev)
Definition: ath9k.c:97

Definition at line 203 of file ath9k.c.