2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 Copyright (C) 2004 - 2009 Felix Fietkau <nbd@openwrt.org>
4 <http://rt2x00.serialmonkey.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 Abstract: rt2x00 generic soc device routines.
25 #include <linux/bug.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/platform_device.h>
29 #include <linux/slab.h>
32 #include "rt2x00soc.h"
34 static void rt2x00soc_free_reg(struct rt2x00_dev
*rt2x00dev
)
39 kfree(rt2x00dev
->eeprom
);
40 rt2x00dev
->eeprom
= NULL
;
42 iounmap(rt2x00dev
->csr
.base
);
45 static int rt2x00soc_alloc_reg(struct rt2x00_dev
*rt2x00dev
)
47 struct platform_device
*pdev
= to_platform_device(rt2x00dev
->dev
);
50 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
54 rt2x00dev
->csr
.base
= ioremap(res
->start
, resource_size(res
));
55 if (!rt2x00dev
->csr
.base
)
58 rt2x00dev
->eeprom
= kzalloc(rt2x00dev
->ops
->eeprom_size
, GFP_KERNEL
);
59 if (!rt2x00dev
->eeprom
)
62 rt2x00dev
->rf
= kzalloc(rt2x00dev
->ops
->rf_size
, GFP_KERNEL
);
69 rt2x00_probe_err("Failed to allocate registers\n");
70 rt2x00soc_free_reg(rt2x00dev
);
75 int rt2x00soc_probe(struct platform_device
*pdev
, const struct rt2x00_ops
*ops
)
77 struct ieee80211_hw
*hw
;
78 struct rt2x00_dev
*rt2x00dev
;
81 hw
= ieee80211_alloc_hw(sizeof(struct rt2x00_dev
), ops
->hw
);
83 rt2x00_probe_err("Failed to allocate hardware\n");
87 platform_set_drvdata(pdev
, hw
);
90 rt2x00dev
->dev
= &pdev
->dev
;
93 rt2x00dev
->irq
= platform_get_irq(pdev
, 0);
94 rt2x00dev
->name
= pdev
->dev
.driver
->name
;
96 rt2x00_set_chip_intf(rt2x00dev
, RT2X00_CHIP_INTF_SOC
);
98 retval
= rt2x00soc_alloc_reg(rt2x00dev
);
100 goto exit_free_device
;
102 retval
= rt2x00lib_probe_dev(rt2x00dev
);
109 rt2x00soc_free_reg(rt2x00dev
);
112 ieee80211_free_hw(hw
);
116 EXPORT_SYMBOL_GPL(rt2x00soc_probe
);
118 int rt2x00soc_remove(struct platform_device
*pdev
)
120 struct ieee80211_hw
*hw
= platform_get_drvdata(pdev
);
121 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
124 * Free all allocated data.
126 rt2x00lib_remove_dev(rt2x00dev
);
127 rt2x00soc_free_reg(rt2x00dev
);
128 ieee80211_free_hw(hw
);
132 EXPORT_SYMBOL_GPL(rt2x00soc_remove
);
135 int rt2x00soc_suspend(struct platform_device
*pdev
, pm_message_t state
)
137 struct ieee80211_hw
*hw
= platform_get_drvdata(pdev
);
138 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
140 return rt2x00lib_suspend(rt2x00dev
, state
);
142 EXPORT_SYMBOL_GPL(rt2x00soc_suspend
);
144 int rt2x00soc_resume(struct platform_device
*pdev
)
146 struct ieee80211_hw
*hw
= platform_get_drvdata(pdev
);
147 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
149 return rt2x00lib_resume(rt2x00dev
);
151 EXPORT_SYMBOL_GPL(rt2x00soc_resume
);
152 #endif /* CONFIG_PM */
155 * rt2x00soc module information.
157 MODULE_AUTHOR(DRV_PROJECT
);
158 MODULE_VERSION(DRV_VERSION
);
159 MODULE_DESCRIPTION("rt2x00 soc library");
160 MODULE_LICENSE("GPL");