Commit 714fa663 authored by Gertjan van Wingerde's avatar Gertjan van Wingerde Committed by John W. Linville

rt2x00: Reorganize RT chipset setting for PCI/SOC devices.

Don't set the RT chipset for a device from within the generic PCI/SOC code,
but rather from the individual drivers, so that individual drivers have
more control over what RT chipset is set.
Preparation for chip handling updates for rt2800 devices.
Signed-off-by: default avatarGertjan van Wingerde <gwingerde@gmail.com>
Acked-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent cea90e55
...@@ -1327,6 +1327,7 @@ static int rt2400pci_validate_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1327,6 +1327,7 @@ static int rt2400pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
static int rt2400pci_init_eeprom(struct rt2x00_dev *rt2x00dev) static int rt2400pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
{ {
u32 reg; u32 reg;
u16 chip;
u16 value; u16 value;
u16 eeprom; u16 eeprom;
...@@ -1335,13 +1336,17 @@ static int rt2400pci_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1335,13 +1336,17 @@ static int rt2400pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
*/ */
rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom); rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
/*
* Identify RT chipset.
*/
pci_read_config_word(to_pci_dev(rt2x00dev->dev), PCI_DEVICE_ID, &chip);
/* /*
* Identify RF chipset. * Identify RF chipset.
*/ */
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2x00pci_register_read(rt2x00dev, CSR0, &reg); rt2x00pci_register_read(rt2x00dev, CSR0, &reg);
rt2x00_set_chip_rf(rt2x00dev, value, reg); rt2x00_set_chip(rt2x00dev, chip, value, reg);
rt2x00_print_chip(rt2x00dev);
if (!rt2x00_rf(rt2x00dev, RF2420) && !rt2x00_rf(rt2x00dev, RF2421)) { if (!rt2x00_rf(rt2x00dev, RF2420) && !rt2x00_rf(rt2x00dev, RF2421)) {
ERROR(rt2x00dev, "Invalid RF chipset detected.\n"); ERROR(rt2x00dev, "Invalid RF chipset detected.\n");
......
...@@ -1490,6 +1490,7 @@ static int rt2500pci_validate_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1490,6 +1490,7 @@ static int rt2500pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
static int rt2500pci_init_eeprom(struct rt2x00_dev *rt2x00dev) static int rt2500pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
{ {
u32 reg; u32 reg;
u16 chip;
u16 value; u16 value;
u16 eeprom; u16 eeprom;
...@@ -1498,13 +1499,17 @@ static int rt2500pci_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1498,13 +1499,17 @@ static int rt2500pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
*/ */
rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom); rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
/*
* Identify RT chipset.
*/
pci_read_config_word(to_pci_dev(rt2x00dev->dev), PCI_DEVICE_ID, &chip);
/* /*
* Identify RF chipset. * Identify RF chipset.
*/ */
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2x00pci_register_read(rt2x00dev, CSR0, &reg); rt2x00pci_register_read(rt2x00dev, CSR0, &reg);
rt2x00_set_chip_rf(rt2x00dev, value, reg); rt2x00_set_chip(rt2x00dev, chip, value, reg);
rt2x00_print_chip(rt2x00dev);
if (!rt2x00_rf(rt2x00dev, RF2522) && if (!rt2x00_rf(rt2x00dev, RF2522) &&
!rt2x00_rf(rt2x00dev, RF2523) && !rt2x00_rf(rt2x00dev, RF2523) &&
......
...@@ -1408,7 +1408,6 @@ static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1408,7 +1408,6 @@ static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev)
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2500usb_register_read(rt2x00dev, MAC_CSR0, &reg); rt2500usb_register_read(rt2x00dev, MAC_CSR0, &reg);
rt2x00_set_chip(rt2x00dev, RT2570, value, reg); rt2x00_set_chip(rt2x00dev, RT2570, value, reg);
rt2x00_print_chip(rt2x00dev);
if (!rt2x00_check_rev(rt2x00dev, 0x000ffff0, 0) || if (!rt2x00_check_rev(rt2x00dev, 0x000ffff0, 0) ||
rt2x00_check_rev(rt2x00dev, 0x0000000f, 0)) { rt2x00_check_rev(rt2x00dev, 0x0000000f, 0)) {
......
...@@ -40,6 +40,9 @@ ...@@ -40,6 +40,9 @@
#if defined(CONFIG_RT2X00_LIB_USB) || defined(CONFIG_RT2X00_LIB_USB_MODULE) #if defined(CONFIG_RT2X00_LIB_USB) || defined(CONFIG_RT2X00_LIB_USB_MODULE)
#include "rt2x00usb.h" #include "rt2x00usb.h"
#endif #endif
#if defined(CONFIG_RT2X00_LIB_PCI) || defined(CONFIG_RT2X00_LIB_PCI_MODULE)
#include "rt2x00pci.h"
#endif
#include "rt2800lib.h" #include "rt2800lib.h"
#include "rt2800.h" #include "rt2800.h"
#include "rt2800usb.h" #include "rt2800usb.h"
...@@ -1839,6 +1842,7 @@ EXPORT_SYMBOL_GPL(rt2800_validate_eeprom); ...@@ -1839,6 +1842,7 @@ EXPORT_SYMBOL_GPL(rt2800_validate_eeprom);
int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev) int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev)
{ {
u32 reg; u32 reg;
u16 chip;
u16 value; u16 value;
u16 eeprom; u16 eeprom;
...@@ -1853,25 +1857,40 @@ int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1853,25 +1857,40 @@ int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev)
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2800_register_read(rt2x00dev, MAC_CSR0, &reg); rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
rt2x00_set_chip_rf(rt2x00dev, value, reg); if (rt2x00_is_pci(rt2x00dev)) {
#if defined(CONFIG_RT2X00_LIB_PCI) || defined(CONFIG_RT2X00_LIB_PCI_MODULE)
if (rt2x00_is_usb(rt2x00dev)) { pci_read_config_word(to_pci_dev(rt2x00dev->dev),
PCI_DEVICE_ID,
&chip);
#else
BUG();
#endif
} else if (rt2x00_is_usb(rt2x00dev)) {
/* /*
* The check for rt2860 is not a typo, some rt2870 hardware * The check for rt2860 is not a typo, some rt2870 hardware
* identifies itself as rt2860 in the CSR register. * identifies itself as rt2860 in the CSR register.
*/ */
if (rt2x00_check_rev(rt2x00dev, 0xfff00000, 0x28600000) || if (((reg & 0xfff00000) == 0x28600000) ||
rt2x00_check_rev(rt2x00dev, 0xfff00000, 0x28700000) || ((reg & 0xfff00000) == 0x28700000) ||
rt2x00_check_rev(rt2x00dev, 0xfff00000, 0x28800000)) { ((reg & 0xfff00000) == 0x28800000)) {
rt2x00_set_chip_rt(rt2x00dev, RT2870); chip = RT2870;
} else if (rt2x00_check_rev(rt2x00dev, 0xffff0000, 0x30700000)) { } else if ((reg & 0xffff0000) == 0x30700000) {
rt2x00_set_chip_rt(rt2x00dev, RT3070); chip = RT3070;
} else { } else {
ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); ERROR(rt2x00dev, "Invalid RT chipset detected.\n");
return -ENODEV; return -ENODEV;
} }
} else if (rt2x00_is_soc(rt2x00dev)) {
#if defined(CONFIG_RALINK_RT288X)
chip = RT2880;
#elif defined(CONFIG_RALINK_RT305X)
chip = RT3052;
#else
BUG();
#endif
} }
rt2x00_print_chip(rt2x00dev);
rt2x00_set_chip(rt2x00dev, chip, value, reg);
if (!rt2x00_rf(rt2x00dev, RF2820) && if (!rt2x00_rf(rt2x00dev, RF2820) &&
!rt2x00_rf(rt2x00dev, RF2850) && !rt2x00_rf(rt2x00dev, RF2850) &&
......
...@@ -1219,11 +1219,10 @@ MODULE_DEVICE_TABLE(pci, rt2800pci_device_table); ...@@ -1219,11 +1219,10 @@ MODULE_DEVICE_TABLE(pci, rt2800pci_device_table);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
#ifdef CONFIG_RT2800PCI_SOC #ifdef CONFIG_RT2800PCI_SOC
#if defined(CONFIG_RALINK_RT288X) static int rt2800soc_probe(struct platform_device *pdev)
__rt2x00soc_probe(RT2880, &rt2800pci_ops); {
#elif defined(CONFIG_RALINK_RT305X) return rt2x00soc_probe(pdev, rt2800pci_ops);
__rt2x00soc_probe(RT3052, &rt2800pci_ops); }
#endif
static struct platform_driver rt2800soc_driver = { static struct platform_driver rt2800soc_driver = {
.driver = { .driver = {
...@@ -1231,7 +1230,7 @@ static struct platform_driver rt2800soc_driver = { ...@@ -1231,7 +1230,7 @@ static struct platform_driver rt2800soc_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.mod_name = KBUILD_MODNAME, .mod_name = KBUILD_MODNAME,
}, },
.probe = __rt2x00soc_probe, .probe = rt2800soc_probe,
.remove = __devexit_p(rt2x00soc_remove), .remove = __devexit_p(rt2x00soc_remove),
.suspend = rt2x00soc_suspend, .suspend = rt2x00soc_suspend,
.resume = rt2x00soc_resume, .resume = rt2x00soc_resume,
......
...@@ -923,22 +923,7 @@ static inline void rt2x00_set_chip(struct rt2x00_dev *rt2x00dev, ...@@ -923,22 +923,7 @@ static inline void rt2x00_set_chip(struct rt2x00_dev *rt2x00dev,
rt2x00dev->chip.rt = rt; rt2x00dev->chip.rt = rt;
rt2x00dev->chip.rf = rf; rt2x00dev->chip.rf = rf;
rt2x00dev->chip.rev = rev; rt2x00dev->chip.rev = rev;
}
static inline void rt2x00_set_chip_rt(struct rt2x00_dev *rt2x00dev,
const u16 rt)
{
rt2x00dev->chip.rt = rt;
}
static inline void rt2x00_set_chip_rf(struct rt2x00_dev *rt2x00dev,
const u16 rf, const u32 rev)
{
rt2x00_set_chip(rt2x00dev, rt2x00dev->chip.rt, rf, rev);
}
static inline void rt2x00_print_chip(struct rt2x00_dev *rt2x00dev)
{
INFO(rt2x00dev, INFO(rt2x00dev,
"Chipset detected - rt: %04x, rf: %04x, rev: %08x.\n", "Chipset detected - rt: %04x, rf: %04x, rev: %08x.\n",
rt2x00dev->chip.rt, rt2x00dev->chip.rf, rt2x00dev->chip.rev); rt2x00dev->chip.rt, rt2x00dev->chip.rf, rt2x00dev->chip.rev);
......
...@@ -272,7 +272,6 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id) ...@@ -272,7 +272,6 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id)
struct ieee80211_hw *hw; struct ieee80211_hw *hw;
struct rt2x00_dev *rt2x00dev; struct rt2x00_dev *rt2x00dev;
int retval; int retval;
u16 chip;
retval = pci_request_regions(pci_dev, pci_name(pci_dev)); retval = pci_request_regions(pci_dev, pci_name(pci_dev));
if (retval) { if (retval) {
...@@ -315,12 +314,6 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id) ...@@ -315,12 +314,6 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id)
rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI); rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI);
/*
* Determine RT chipset by reading PCI header.
*/
pci_read_config_word(pci_dev, PCI_DEVICE_ID, &chip);
rt2x00_set_chip_rt(rt2x00dev, chip);
retval = rt2x00pci_alloc_reg(rt2x00dev); retval = rt2x00pci_alloc_reg(rt2x00dev);
if (retval) if (retval)
goto exit_free_device; goto exit_free_device;
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define RT2X00PCI_H #define RT2X00PCI_H
#include <linux/io.h> #include <linux/io.h>
#include <linux/pci.h>
/* /*
* This variable should be used with the * This variable should be used with the
......
...@@ -71,9 +71,7 @@ static int rt2x00soc_alloc_reg(struct rt2x00_dev *rt2x00dev) ...@@ -71,9 +71,7 @@ static int rt2x00soc_alloc_reg(struct rt2x00_dev *rt2x00dev)
return -ENOMEM; return -ENOMEM;
} }
int rt2x00soc_probe(struct platform_device *pdev, int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops)
const unsigned short chipset,
const struct rt2x00_ops *ops)
{ {
struct ieee80211_hw *hw; struct ieee80211_hw *hw;
struct rt2x00_dev *rt2x00dev; struct rt2x00_dev *rt2x00dev;
...@@ -95,7 +93,6 @@ int rt2x00soc_probe(struct platform_device *pdev, ...@@ -95,7 +93,6 @@ int rt2x00soc_probe(struct platform_device *pdev,
rt2x00dev->name = pdev->dev.driver->name; rt2x00dev->name = pdev->dev.driver->name;
rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_SOC); rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_SOC);
rt2x00_set_chip_rt(rt2x00dev, chipset);
retval = rt2x00soc_alloc_reg(rt2x00dev); retval = rt2x00soc_alloc_reg(rt2x00dev);
if (retval) if (retval)
......
...@@ -28,18 +28,10 @@ ...@@ -28,18 +28,10 @@
#define KSEG1ADDR(__ptr) __ptr #define KSEG1ADDR(__ptr) __ptr
#define __rt2x00soc_probe(__chipset, __ops) \
static int __rt2x00soc_probe(struct platform_device *pdev) \
{ \
return rt2x00soc_probe(pdev, (__chipset), (__ops)); \
}
/* /*
* SoC driver handlers. * SoC driver handlers.
*/ */
int rt2x00soc_probe(struct platform_device *pdev, int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops);
const unsigned short chipset,
const struct rt2x00_ops *ops);
int rt2x00soc_remove(struct platform_device *pdev); int rt2x00soc_remove(struct platform_device *pdev);
#ifdef CONFIG_PM #ifdef CONFIG_PM
int rt2x00soc_suspend(struct platform_device *pdev, pm_message_t state); int rt2x00soc_suspend(struct platform_device *pdev, pm_message_t state);
......
...@@ -2282,6 +2282,7 @@ static int rt61pci_validate_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -2282,6 +2282,7 @@ static int rt61pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev) static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
{ {
u32 reg; u32 reg;
u16 chip;
u16 value; u16 value;
u16 eeprom; u16 eeprom;
...@@ -2290,13 +2291,17 @@ static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -2290,13 +2291,17 @@ static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
*/ */
rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom); rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
/*
* Identify RT chipset.
*/
pci_read_config_word(to_pci_dev(rt2x00dev->dev), PCI_DEVICE_ID, &chip);
/* /*
* Identify RF chipset. * Identify RF chipset.
*/ */
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2x00pci_register_read(rt2x00dev, MAC_CSR0, &reg); rt2x00pci_register_read(rt2x00dev, MAC_CSR0, &reg);
rt2x00_set_chip_rf(rt2x00dev, value, reg); rt2x00_set_chip(rt2x00dev, chip, value, reg);
rt2x00_print_chip(rt2x00dev);
if (!rt2x00_rf(rt2x00dev, RF5225) && if (!rt2x00_rf(rt2x00dev, RF5225) &&
!rt2x00_rf(rt2x00dev, RF5325) && !rt2x00_rf(rt2x00dev, RF5325) &&
......
...@@ -1821,7 +1821,6 @@ static int rt73usb_init_eeprom(struct rt2x00_dev *rt2x00dev) ...@@ -1821,7 +1821,6 @@ static int rt73usb_init_eeprom(struct rt2x00_dev *rt2x00dev)
value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
rt2x00usb_register_read(rt2x00dev, MAC_CSR0, &reg); rt2x00usb_register_read(rt2x00dev, MAC_CSR0, &reg);
rt2x00_set_chip(rt2x00dev, RT2571, value, reg); rt2x00_set_chip(rt2x00dev, RT2571, value, reg);
rt2x00_print_chip(rt2x00dev);
if (!rt2x00_check_rev(rt2x00dev, 0x000ffff0, 0x25730) || if (!rt2x00_check_rev(rt2x00dev, 0x000ffff0, 0x25730) ||
rt2x00_check_rev(rt2x00dev, 0x0000000f, 0)) { rt2x00_check_rev(rt2x00dev, 0x0000000f, 0)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment