diff options
Diffstat (limited to 'arch/x86/kernel/olpc.c')
| -rw-r--r-- | arch/x86/kernel/olpc.c | 89 |
1 files changed, 55 insertions, 34 deletions
diff --git a/arch/x86/kernel/olpc.c b/arch/x86/kernel/olpc.c index 0e0cdde519be..edaf3fe8dc5e 100644 --- a/arch/x86/kernel/olpc.c +++ b/arch/x86/kernel/olpc.c | |||
| @@ -17,6 +17,7 @@ | |||
| 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 | #include <linux/platform_device.h> | ||
| 20 | 21 | ||
| 21 | #include <asm/geode.h> | 22 | #include <asm/geode.h> |
| 22 | #include <asm/setup.h> | 23 | #include <asm/setup.h> |
| @@ -114,6 +115,7 @@ int olpc_ec_cmd(unsigned char cmd, unsigned char *inbuf, size_t inlen, | |||
| 114 | unsigned long flags; | 115 | unsigned long flags; |
| 115 | int ret = -EIO; | 116 | int ret = -EIO; |
| 116 | int i; | 117 | int i; |
| 118 | int restarts = 0; | ||
| 117 | 119 | ||
| 118 | spin_lock_irqsave(&ec_lock, flags); | 120 | spin_lock_irqsave(&ec_lock, flags); |
| 119 | 121 | ||
| @@ -169,7 +171,9 @@ restart: | |||
| 169 | if (wait_on_obf(0x6c, 1)) { | 171 | if (wait_on_obf(0x6c, 1)) { |
| 170 | printk(KERN_ERR "olpc-ec: timeout waiting for" | 172 | printk(KERN_ERR "olpc-ec: timeout waiting for" |
| 171 | " EC to provide data!\n"); | 173 | " EC to provide data!\n"); |
| 172 | goto restart; | 174 | if (restarts++ < 10) |
| 175 | goto restart; | ||
| 176 | goto err; | ||
| 173 | } | 177 | } |
| 174 | outbuf[i] = inb(0x68); | 178 | outbuf[i] = inb(0x68); |
| 175 | pr_devel("olpc-ec: received 0x%x\n", outbuf[i]); | 179 | pr_devel("olpc-ec: received 0x%x\n", outbuf[i]); |
| @@ -183,8 +187,21 @@ err: | |||
| 183 | } | 187 | } |
| 184 | EXPORT_SYMBOL_GPL(olpc_ec_cmd); | 188 | EXPORT_SYMBOL_GPL(olpc_ec_cmd); |
| 185 | 189 | ||
| 186 | #ifdef CONFIG_OLPC_OPENFIRMWARE | 190 | static bool __init check_ofw_architecture(void) |
| 187 | static void __init platform_detect(void) | 191 | { |
| 192 | size_t propsize; | ||
| 193 | char olpc_arch[5]; | ||
| 194 | const void *args[] = { NULL, "architecture", olpc_arch, (void *)5 }; | ||
| 195 | void *res[] = { &propsize }; | ||
| 196 | |||
| 197 | if (olpc_ofw("getprop", args, res)) { | ||
| 198 | printk(KERN_ERR "ofw: getprop call failed!\n"); | ||
| 199 | return false; | ||
| 200 | } | ||
| 201 | return propsize == 5 && strncmp("OLPC", olpc_arch, 5) == 0; | ||
| 202 | } | ||
| 203 | |||
| 204 | static u32 __init get_board_revision(void) | ||
| 188 | { | 205 | { |
| 189 | size_t propsize; | 206 | size_t propsize; |
| 190 | __be32 rev; | 207 | __be32 rev; |
| @@ -193,45 +210,43 @@ static void __init platform_detect(void) | |||
| 193 | 210 | ||
| 194 | if (olpc_ofw("getprop", args, res) || propsize != 4) { | 211 | if (olpc_ofw("getprop", args, res) || propsize != 4) { |
| 195 | printk(KERN_ERR "ofw: getprop call failed!\n"); | 212 | printk(KERN_ERR "ofw: getprop call failed!\n"); |
| 196 | rev = cpu_to_be32(0); | 213 | return cpu_to_be32(0); |
| 197 | } | 214 | } |
| 198 | olpc_platform_info.boardrev = be32_to_cpu(rev); | 215 | return be32_to_cpu(rev); |
| 199 | } | 216 | } |
| 200 | #else | 217 | |
| 201 | static void __init platform_detect(void) | 218 | static bool __init platform_detect(void) |
| 202 | { | 219 | { |
| 203 | /* stopgap until OFW support is added to the kernel */ | 220 | if (!check_ofw_architecture()) |
| 204 | olpc_platform_info.boardrev = olpc_board(0xc2); | 221 | return false; |
| 222 | olpc_platform_info.flags |= OLPC_F_PRESENT; | ||
| 223 | olpc_platform_info.boardrev = get_board_revision(); | ||
| 224 | return true; | ||
| 205 | } | 225 | } |
| 206 | #endif | ||
| 207 | 226 | ||
| 208 | static int __init olpc_init(void) | 227 | static int __init add_xo1_platform_devices(void) |
| 209 | { | 228 | { |
| 210 | unsigned char *romsig; | 229 | struct platform_device *pdev; |
| 211 | 230 | ||
| 212 | /* The ioremap check is dangerous; limit what we run it on */ | 231 | pdev = platform_device_register_simple("xo1-rfkill", -1, NULL, 0); |
| 213 | if (!is_geode() || cs5535_has_vsa2()) | 232 | if (IS_ERR(pdev)) |
| 214 | return 0; | 233 | return PTR_ERR(pdev); |
| 215 | 234 | ||
| 216 | spin_lock_init(&ec_lock); | 235 | pdev = platform_device_register_simple("olpc-xo1", -1, NULL, 0); |
| 236 | if (IS_ERR(pdev)) | ||
| 237 | return PTR_ERR(pdev); | ||
| 217 | 238 | ||
| 218 | romsig = ioremap(0xffffffc0, 16); | 239 | return 0; |
| 219 | if (!romsig) | 240 | } |
| 220 | return 0; | ||
| 221 | 241 | ||
| 222 | if (strncmp(romsig, "CL1 Q", 7)) | 242 | static int __init olpc_init(void) |
| 223 | goto unmap; | 243 | { |
| 224 | if (strncmp(romsig+6, romsig+13, 3)) { | 244 | int r = 0; |
| 225 | printk(KERN_INFO "OLPC BIOS signature looks invalid. " | ||
| 226 | "Assuming not OLPC\n"); | ||
| 227 | goto unmap; | ||
| 228 | } | ||
| 229 | 245 | ||
| 230 | printk(KERN_INFO "OLPC board with OpenFirmware %.16s\n", romsig); | 246 | if (!olpc_ofw_present() || !platform_detect()) |
| 231 | olpc_platform_info.flags |= OLPC_F_PRESENT; | 247 | return 0; |
| 232 | 248 | ||
| 233 | /* get the platform revision */ | 249 | spin_lock_init(&ec_lock); |
| 234 | platform_detect(); | ||
| 235 | 250 | ||
| 236 | /* assume B1 and above models always have a DCON */ | 251 | /* assume B1 and above models always have a DCON */ |
| 237 | if (olpc_board_at_least(olpc_board(0xb1))) | 252 | if (olpc_board_at_least(olpc_board(0xb1))) |
| @@ -242,8 +257,10 @@ static int __init olpc_init(void) | |||
| 242 | (unsigned char *) &olpc_platform_info.ecver, 1); | 257 | (unsigned char *) &olpc_platform_info.ecver, 1); |
| 243 | 258 | ||
| 244 | #ifdef CONFIG_PCI_OLPC | 259 | #ifdef CONFIG_PCI_OLPC |
| 245 | /* If the VSA exists let it emulate PCI, if not emulate in kernel */ | 260 | /* If the VSA exists let it emulate PCI, if not emulate in kernel. |
| 246 | if (!cs5535_has_vsa2()) | 261 | * XO-1 only. */ |
| 262 | if (olpc_platform_info.boardrev < olpc_board_pre(0xd0) && | ||
| 263 | !cs5535_has_vsa2()) | ||
| 247 | x86_init.pci.arch_init = pci_olpc_init; | 264 | x86_init.pci.arch_init = pci_olpc_init; |
| 248 | #endif | 265 | #endif |
| 249 | 266 | ||
| @@ -252,8 +269,12 @@ static int __init olpc_init(void) | |||
| 252 | olpc_platform_info.boardrev >> 4, | 269 | olpc_platform_info.boardrev >> 4, |
| 253 | olpc_platform_info.ecver); | 270 | olpc_platform_info.ecver); |
| 254 | 271 | ||
| 255 | unmap: | 272 | if (olpc_platform_info.boardrev < olpc_board_pre(0xd0)) { /* XO-1 */ |
| 256 | iounmap(romsig); | 273 | r = add_xo1_platform_devices(); |
| 274 | if (r) | ||
| 275 | return r; | ||
| 276 | } | ||
| 277 | |||
| 257 | return 0; | 278 | return 0; |
| 258 | } | 279 | } |
| 259 | 280 | ||
