diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-02-22 08:42:04 -0500 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-25 22:26:23 -0500 |
| commit | d5d0e88c1e5b069aadb050ff6ec95df312de876a (patch) | |
| tree | 3ad3e5964cc7db89e7fbdb480be611e1193222ca | |
| parent | 4fb6088a5cb3a77123fea1279bf2d5b16cf27648 (diff) | |
x86, olpc: Use pci subarch init for OLPC
Replace the #ifdef'ed OLPC-specific init functions by a conditional
x86_init function. If the function returns 0 we leave pci_arch_init,
otherwise we continue.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Cc: Andres Salomon <dilinger@collabora.co.uk>
LKML-Reference: <43F901BD926A4E43B106BF17856F0755A318CE89@orsmsx508.amr.corp.intel.com>
Signed-off-by: Jacob Pan <jacob.jun.pan@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
| -rw-r--r-- | arch/x86/include/asm/olpc.h | 20 | ||||
| -rw-r--r-- | arch/x86/include/asm/pci_x86.h | 1 | ||||
| -rw-r--r-- | arch/x86/kernel/olpc.c | 10 | ||||
| -rw-r--r-- | arch/x86/pci/init.c | 8 | ||||
| -rw-r--r-- | arch/x86/pci/olpc.c | 3 |
5 files changed, 13 insertions, 29 deletions
diff --git a/arch/x86/include/asm/olpc.h b/arch/x86/include/asm/olpc.h index 3a57385d9fa7..101229b0d8ed 100644 --- a/arch/x86/include/asm/olpc.h +++ b/arch/x86/include/asm/olpc.h | |||
| @@ -13,7 +13,6 @@ struct olpc_platform_t { | |||
| 13 | 13 | ||
| 14 | #define OLPC_F_PRESENT 0x01 | 14 | #define OLPC_F_PRESENT 0x01 |
| 15 | #define OLPC_F_DCON 0x02 | 15 | #define OLPC_F_DCON 0x02 |
| 16 | #define OLPC_F_VSA 0x04 | ||
| 17 | 16 | ||
| 18 | #ifdef CONFIG_OLPC | 17 | #ifdef CONFIG_OLPC |
| 19 | 18 | ||
| @@ -51,18 +50,6 @@ static inline int olpc_has_dcon(void) | |||
| 51 | } | 50 | } |
| 52 | 51 | ||
| 53 | /* | 52 | /* |
| 54 | * The VSA is software from AMD that typical Geode bioses will include. | ||
| 55 | * It is used to emulate the PCI bus, VGA, etc. OLPC's Open Firmware does | ||
| 56 | * not include the VSA; instead, PCI is emulated by the kernel. | ||
| 57 | * | ||
| 58 | * The VSA is described further in arch/x86/pci/olpc.c. | ||
| 59 | */ | ||
| 60 | static inline int olpc_has_vsa(void) | ||
| 61 | { | ||
| 62 | return (olpc_platform_info.flags & OLPC_F_VSA) ? 1 : 0; | ||
| 63 | } | ||
| 64 | |||
| 65 | /* | ||
| 66 | * The "Mass Production" version of OLPC's XO is identified as being model | 53 | * The "Mass Production" version of OLPC's XO is identified as being model |
| 67 | * C2. During the prototype phase, the following models (in chronological | 54 | * C2. During the prototype phase, the following models (in chronological |
| 68 | * order) were created: A1, B1, B2, B3, B4, C1. The A1 through B2 models | 55 | * order) were created: A1, B1, B2, B3, B4, C1. The A1 through B2 models |
| @@ -87,13 +74,10 @@ static inline int olpc_has_dcon(void) | |||
| 87 | return 0; | 74 | return 0; |
| 88 | } | 75 | } |
| 89 | 76 | ||
| 90 | static inline int olpc_has_vsa(void) | ||
| 91 | { | ||
| 92 | return 0; | ||
| 93 | } | ||
| 94 | |||
| 95 | #endif | 77 | #endif |
| 96 | 78 | ||
| 79 | extern int pci_olpc_init(void); | ||
| 80 | |||
| 97 | /* EC related functions */ | 81 | /* EC related functions */ |
| 98 | 82 | ||
| 99 | extern int olpc_ec_cmd(unsigned char cmd, unsigned char *inbuf, size_t inlen, | 83 | extern int olpc_ec_cmd(unsigned char cmd, unsigned char *inbuf, size_t inlen, |
diff --git a/arch/x86/include/asm/pci_x86.h b/arch/x86/include/asm/pci_x86.h index 6e69edfbf074..36085518badb 100644 --- a/arch/x86/include/asm/pci_x86.h +++ b/arch/x86/include/asm/pci_x86.h | |||
| @@ -104,7 +104,6 @@ extern bool port_cf9_safe; | |||
| 104 | extern int pci_direct_probe(void); | 104 | extern int pci_direct_probe(void); |
| 105 | extern void pci_direct_init(int type); | 105 | extern void pci_direct_init(int type); |
| 106 | extern void pci_pcbios_init(void); | 106 | extern void pci_pcbios_init(void); |
| 107 | extern int pci_olpc_init(void); | ||
| 108 | extern void __init dmi_check_pciprobe(void); | 107 | extern void __init dmi_check_pciprobe(void); |
| 109 | extern void __init dmi_check_skip_isa_align(void); | 108 | extern void __init dmi_check_skip_isa_align(void); |
| 110 | 109 | ||
diff --git a/arch/x86/kernel/olpc.c b/arch/x86/kernel/olpc.c index 9d1d263f786f..8297160c41b3 100644 --- a/arch/x86/kernel/olpc.c +++ b/arch/x86/kernel/olpc.c | |||
| @@ -17,7 +17,9 @@ | |||
| 17 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
| 19 | #include <linux/string.h> | 19 | #include <linux/string.h> |
| 20 | |||
| 20 | #include <asm/geode.h> | 21 | #include <asm/geode.h> |
| 22 | #include <asm/setup.h> | ||
| 21 | #include <asm/olpc.h> | 23 | #include <asm/olpc.h> |
| 22 | 24 | ||
| 23 | #ifdef CONFIG_OPEN_FIRMWARE | 25 | #ifdef CONFIG_OPEN_FIRMWARE |
| @@ -243,9 +245,11 @@ static int __init olpc_init(void) | |||
| 243 | olpc_ec_cmd(EC_FIRMWARE_REV, NULL, 0, | 245 | olpc_ec_cmd(EC_FIRMWARE_REV, NULL, 0, |
| 244 | (unsigned char *) &olpc_platform_info.ecver, 1); | 246 | (unsigned char *) &olpc_platform_info.ecver, 1); |
| 245 | 247 | ||
| 246 | /* check to see if the VSA exists */ | 248 | #ifdef CONFIG_PCI_OLPC |
| 247 | if (cs5535_has_vsa2()) | 249 | /* If the VSA exists let it emulate PCI, if not emulate in kernel */ |
| 248 | olpc_platform_info.flags |= OLPC_F_VSA; | 250 | if (!cs5535_has_vsa2()) |
| 251 | x86_init.pci.arch_init = pci_olpc_init; | ||
| 252 | #endif | ||
| 249 | 253 | ||
| 250 | printk(KERN_INFO "OLPC board revision %s%X (EC=%x)\n", | 254 | printk(KERN_INFO "OLPC board revision %s%X (EC=%x)\n", |
| 251 | ((olpc_platform_info.boardrev & 0xf) < 8) ? "pre" : "", | 255 | ((olpc_platform_info.boardrev & 0xf) < 8) ? "pre" : "", |
diff --git a/arch/x86/pci/init.c b/arch/x86/pci/init.c index 25a1f8efed4a..adb62aaa7ecd 100644 --- a/arch/x86/pci/init.c +++ b/arch/x86/pci/init.c | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #include <linux/pci.h> | 1 | #include <linux/pci.h> |
| 2 | #include <linux/init.h> | 2 | #include <linux/init.h> |
| 3 | #include <asm/pci_x86.h> | 3 | #include <asm/pci_x86.h> |
| 4 | #include <asm/x86_init.h> | ||
| 4 | 5 | ||
| 5 | /* arch_initcall has too random ordering, so call the initializers | 6 | /* arch_initcall has too random ordering, so call the initializers |
| 6 | in the right sequence from here. */ | 7 | in the right sequence from here. */ |
| @@ -15,10 +16,9 @@ static __init int pci_arch_init(void) | |||
| 15 | if (!(pci_probe & PCI_PROBE_NOEARLY)) | 16 | if (!(pci_probe & PCI_PROBE_NOEARLY)) |
| 16 | pci_mmcfg_early_init(); | 17 | pci_mmcfg_early_init(); |
| 17 | 18 | ||
| 18 | #ifdef CONFIG_PCI_OLPC | 19 | if (x86_init.pci.arch_init && !x86_init.pci.arch_init()) |
| 19 | if (!pci_olpc_init()) | 20 | return 0; |
| 20 | return 0; /* skip additional checks if it's an XO */ | 21 | |
| 21 | #endif | ||
| 22 | #ifdef CONFIG_PCI_BIOS | 22 | #ifdef CONFIG_PCI_BIOS |
| 23 | pci_pcbios_init(); | 23 | pci_pcbios_init(); |
| 24 | #endif | 24 | #endif |
diff --git a/arch/x86/pci/olpc.c b/arch/x86/pci/olpc.c index b889d824f7c6..b34815408f58 100644 --- a/arch/x86/pci/olpc.c +++ b/arch/x86/pci/olpc.c | |||
| @@ -304,9 +304,6 @@ static struct pci_raw_ops pci_olpc_conf = { | |||
| 304 | 304 | ||
| 305 | int __init pci_olpc_init(void) | 305 | int __init pci_olpc_init(void) |
| 306 | { | 306 | { |
| 307 | if (!machine_is_olpc() || olpc_has_vsa()) | ||
| 308 | return -ENODEV; | ||
| 309 | |||
| 310 | printk(KERN_INFO "PCI: Using configuration type OLPC\n"); | 307 | printk(KERN_INFO "PCI: Using configuration type OLPC\n"); |
| 311 | raw_pci_ops = &pci_olpc_conf; | 308 | raw_pci_ops = &pci_olpc_conf; |
| 312 | is_lx = is_geode_lx(); | 309 | is_lx = is_geode_lx(); |
