ar71xx: run the RedBoot parser only on the RedBoot based boards
SVN-Revision: 29414
This commit is contained in:
parent
9cc28d5aa0
commit
fc7fb29bae
7 changed files with 60 additions and 27 deletions
|
@ -9,9 +9,6 @@
|
|||
* by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#include <linux/mtd/mtd.h>
|
||||
#include <linux/mtd/partitions.h>
|
||||
|
||||
#include <asm/mips_machine.h>
|
||||
#include <asm/mach-ar71xx/ar71xx.h>
|
||||
|
||||
|
@ -76,6 +73,15 @@ static struct gpio_keys_button aw_nr580_gpio_keys[] __initdata = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *aw_nr580_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data aw_nr580_flash_data = {
|
||||
.part_probes = aw_nr580_part_probes,
|
||||
};
|
||||
|
||||
static void __init aw_nr580_setup(void)
|
||||
{
|
||||
ar71xx_add_device_mdio(0, 0x0);
|
||||
|
@ -88,7 +94,7 @@ static void __init aw_nr580_setup(void)
|
|||
|
||||
pb42_pci_init();
|
||||
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&aw_nr580_flash_data);
|
||||
|
||||
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(aw_nr580_leds_gpio),
|
||||
aw_nr580_leds_gpio);
|
||||
|
|
|
@ -153,6 +153,15 @@ static struct gpio_keys_button eap7660d_gpio_keys[] __initdata = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *eap7660d_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data eap7660d_flash_data = {
|
||||
.part_probes = eap7660d_part_probes,
|
||||
};
|
||||
|
||||
static void __init eap7660d_setup(void)
|
||||
{
|
||||
u8 *boardconfig = (u8 *) KSEG1ADDR(EAP7660D_BOARDCONFIG);
|
||||
|
@ -164,7 +173,7 @@ static void __init eap7660d_setup(void)
|
|||
ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
||||
ar71xx_eth0_data.phy_mask = EAP7660D_PHYMASK;
|
||||
ar71xx_add_device_eth(0);
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&eap7660d_flash_data);
|
||||
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(eap7660d_leds_gpio),
|
||||
eap7660d_leds_gpio);
|
||||
ar71xx_register_gpio_keys_polled(-1, EAP7660D_KEYS_POLL_INTERVAL,
|
||||
|
|
|
@ -65,13 +65,22 @@ static struct platform_device ja76pf_i2c_gpio_device = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *ja76pf_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data ja76pf_flash_data = {
|
||||
.part_probes = ja76pf_part_probes,
|
||||
};
|
||||
|
||||
#define JA76PF_WAN_PHYMASK (1 << 4)
|
||||
#define JA76PF_LAN_PHYMASK ((1 << 0) | (1 << 1) | (1 << 2) | (1 < 3))
|
||||
#define JA76PF_MDIO_PHYMASK (JA76PF_LAN_PHYMASK | JA76PF_WAN_PHYMASK)
|
||||
|
||||
static void __init ja76pf_init(void)
|
||||
{
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&ja76pf_flash_data);
|
||||
|
||||
ar71xx_add_device_mdio(0, ~JA76PF_MDIO_PHYMASK);
|
||||
|
||||
|
|
|
@ -46,12 +46,21 @@ static struct platform_device jwap003_i2c_gpio_device = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *jwap003_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data jwap003_flash_data = {
|
||||
.part_probes = jwap003_part_probes,
|
||||
};
|
||||
|
||||
#define JWAP003_WAN_PHYMASK BIT(0)
|
||||
#define JWAP003_LAN_PHYMASK BIT(4)
|
||||
|
||||
static void __init jwap003_init(void)
|
||||
{
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&jwap003_flash_data);
|
||||
|
||||
ar71xx_add_device_mdio(0, 0x0);
|
||||
|
||||
|
|
|
@ -42,13 +42,22 @@ static struct gpio_keys_button pb42_gpio_keys[] __initdata = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *pb42_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data pb42_flash_data = {
|
||||
.part_probes = pb42_part_probes,
|
||||
};
|
||||
|
||||
#define PB42_WAN_PHYMASK BIT(20)
|
||||
#define PB42_LAN_PHYMASK (BIT(16) | BIT(17) | BIT(18) | BIT(19))
|
||||
#define PB42_MDIO_PHYMASK (PB42_LAN_PHYMASK | PB42_WAN_PHYMASK)
|
||||
|
||||
static void __init pb42_init(void)
|
||||
{
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&pb42_flash_data);
|
||||
|
||||
ar71xx_add_device_mdio(0, ~PB42_MDIO_PHYMASK);
|
||||
|
||||
|
|
|
@ -123,9 +123,18 @@ static struct gpio_keys_button ubnt_m_gpio_keys[] __initdata = {
|
|||
}
|
||||
};
|
||||
|
||||
static const char *ubnt_part_probes[] = {
|
||||
"RedBoot",
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct flash_platform_data ubnt_flash_data = {
|
||||
.part_probes = ubnt_part_probes,
|
||||
};
|
||||
|
||||
static void __init ubnt_generic_setup(void)
|
||||
{
|
||||
ar71xx_add_device_m25p80(NULL);
|
||||
ar71xx_add_device_m25p80(&ubnt_flash_data);
|
||||
|
||||
ar71xx_register_gpio_keys_polled(-1, UBNT_KEYS_POLL_INTERVAL,
|
||||
ARRAY_SIZE(ubnt_gpio_keys),
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
--- a/drivers/mtd/devices/m25p80.c
|
||||
+++ b/drivers/mtd/devices/m25p80.c
|
||||
@@ -972,6 +972,15 @@ static int __devinit m25p_probe(struct s
|
||||
nr_parts = parse_mtd_partitions(&flash->mtd,
|
||||
data->part_probes, &parts, 0);
|
||||
|
||||
+#ifdef CONFIG_MTD_REDBOOT_PARTS
|
||||
+ if (nr_parts <= 0) {
|
||||
+ static const char *part_probes[]
|
||||
+ = { "RedBoot", NULL, };
|
||||
+
|
||||
+ nr_parts = parse_mtd_partitions(&flash->mtd,
|
||||
+ part_probes, &parts, 0);
|
||||
+ }
|
||||
+#endif
|
||||
if (nr_parts <= 0 && data && data->parts) {
|
||||
parts = data->parts;
|
||||
nr_parts = data->nr_parts;
|
Loading…
Reference in a new issue