2 * Support for the OLPC DCON and OLPC EC access
4 * Copyright © 2006 Advanced Micro Devices, Inc.
5 * Copyright © 2007-2008 Andres Salomon <dilinger@debian.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/delay.h>
17 #include <linux/spinlock.h>
19 #include <linux/string.h>
20 #include <linux/platform_device.h>
23 #include <asm/geode.h>
24 #include <asm/setup.h>
26 #include <asm/olpc_ofw.h>
28 struct olpc_platform_t olpc_platform_info
;
29 EXPORT_SYMBOL_GPL(olpc_platform_info
);
31 static DEFINE_SPINLOCK(ec_lock
);
33 /* what the timeout *should* be (in ms) */
34 #define EC_BASE_TIMEOUT 20
36 /* the timeout that bugs in the EC might force us to actually use */
37 static int ec_timeout
= EC_BASE_TIMEOUT
;
39 static int __init
olpc_ec_timeout_set(char *str
)
41 if (get_option(&str
, &ec_timeout
) != 1) {
42 ec_timeout
= EC_BASE_TIMEOUT
;
43 printk(KERN_ERR
"olpc-ec: invalid argument to "
44 "'olpc_ec_timeout=', ignoring!\n");
46 printk(KERN_DEBUG
"olpc-ec: using %d ms delay for EC commands.\n",
50 __setup("olpc_ec_timeout=", olpc_ec_timeout_set
);
53 * These {i,o}bf_status functions return whether the buffers are full or not.
56 static inline unsigned int ibf_status(unsigned int port
)
58 return !!(inb(port
) & 0x02);
61 static inline unsigned int obf_status(unsigned int port
)
63 return inb(port
) & 0x01;
66 #define wait_on_ibf(p, d) __wait_on_ibf(__LINE__, (p), (d))
67 static int __wait_on_ibf(unsigned int line
, unsigned int port
, int desired
)
70 int state
= ibf_status(port
);
72 for (timeo
= ec_timeout
; state
!= desired
&& timeo
; timeo
--) {
74 state
= ibf_status(port
);
77 if ((state
== desired
) && (ec_timeout
> EC_BASE_TIMEOUT
) &&
78 timeo
< (ec_timeout
- EC_BASE_TIMEOUT
)) {
79 printk(KERN_WARNING
"olpc-ec: %d: waited %u ms for IBF!\n",
80 line
, ec_timeout
- timeo
);
83 return !(state
== desired
);
86 #define wait_on_obf(p, d) __wait_on_obf(__LINE__, (p), (d))
87 static int __wait_on_obf(unsigned int line
, unsigned int port
, int desired
)
90 int state
= obf_status(port
);
92 for (timeo
= ec_timeout
; state
!= desired
&& timeo
; timeo
--) {
94 state
= obf_status(port
);
97 if ((state
== desired
) && (ec_timeout
> EC_BASE_TIMEOUT
) &&
98 timeo
< (ec_timeout
- EC_BASE_TIMEOUT
)) {
99 printk(KERN_WARNING
"olpc-ec: %d: waited %u ms for OBF!\n",
100 line
, ec_timeout
- timeo
);
103 return !(state
== desired
);
107 * This allows the kernel to run Embedded Controller commands. The EC is
108 * documented at <http://wiki.laptop.org/go/Embedded_controller>, and the
109 * available EC commands are here:
110 * <http://wiki.laptop.org/go/Ec_specification>. Unfortunately, while
111 * OpenFirmware's source is available, the EC's is not.
113 int olpc_ec_cmd(unsigned char cmd
, unsigned char *inbuf
, size_t inlen
,
114 unsigned char *outbuf
, size_t outlen
)
121 spin_lock_irqsave(&ec_lock
, flags
);
124 for (i
= 0; i
< 10 && (obf_status(0x6c) == 1); i
++)
127 printk(KERN_ERR
"olpc-ec: timeout while attempting to "
128 "clear OBF flag!\n");
132 if (wait_on_ibf(0x6c, 0)) {
133 printk(KERN_ERR
"olpc-ec: timeout waiting for EC to "
140 * Note that if we time out during any IBF checks, that's a failure;
141 * we have to return. There's no way for the kernel to clear that.
143 * If we time out during an OBF check, we can restart the command;
144 * reissuing it will clear the OBF flag, and we should be alright.
145 * The OBF flag will sometimes misbehave due to what we believe
146 * is a hardware quirk..
148 pr_devel("olpc-ec: running cmd 0x%x\n", cmd
);
151 if (wait_on_ibf(0x6c, 0)) {
152 printk(KERN_ERR
"olpc-ec: timeout waiting for EC to read "
157 if (inbuf
&& inlen
) {
158 /* write data to EC */
159 for (i
= 0; i
< inlen
; i
++) {
160 if (wait_on_ibf(0x6c, 0)) {
161 printk(KERN_ERR
"olpc-ec: timeout waiting for"
162 " EC accept data!\n");
165 pr_devel("olpc-ec: sending cmd arg 0x%x\n", inbuf
[i
]);
166 outb(inbuf
[i
], 0x68);
169 if (outbuf
&& outlen
) {
170 /* read data from EC */
171 for (i
= 0; i
< outlen
; i
++) {
172 if (wait_on_obf(0x6c, 1)) {
173 printk(KERN_ERR
"olpc-ec: timeout waiting for"
174 " EC to provide data!\n");
179 outbuf
[i
] = inb(0x68);
180 pr_devel("olpc-ec: received 0x%x\n", outbuf
[i
]);
186 spin_unlock_irqrestore(&ec_lock
, flags
);
189 EXPORT_SYMBOL_GPL(olpc_ec_cmd
);
191 static bool __init
check_ofw_architecture(struct device_node
*root
)
193 const char *olpc_arch
;
196 olpc_arch
= of_get_property(root
, "architecture", &propsize
);
197 return propsize
== 5 && strncmp("OLPC", olpc_arch
, 5) == 0;
200 static u32 __init
get_board_revision(struct device_node
*root
)
205 rev
= of_get_property(root
, "board-revision-int", &propsize
);
209 return be32_to_cpu(*rev
);
212 static bool __init
platform_detect(void)
214 struct device_node
*root
= of_find_node_by_path("/");
220 success
= check_ofw_architecture(root
);
222 olpc_platform_info
.boardrev
= get_board_revision(root
);
223 olpc_platform_info
.flags
|= OLPC_F_PRESENT
;
230 static int __init
add_xo1_platform_devices(void)
232 struct platform_device
*pdev
;
234 pdev
= platform_device_register_simple("xo1-rfkill", -1, NULL
, 0);
236 return PTR_ERR(pdev
);
238 pdev
= platform_device_register_simple("olpc-xo1", -1, NULL
, 0);
240 return PTR_ERR(pdev
);
245 static int __init
olpc_init(void)
249 if (!olpc_ofw_present() || !platform_detect())
252 spin_lock_init(&ec_lock
);
254 /* assume B1 and above models always have a DCON */
255 if (olpc_board_at_least(olpc_board(0xb1)))
256 olpc_platform_info
.flags
|= OLPC_F_DCON
;
258 /* get the EC revision */
259 olpc_ec_cmd(EC_FIRMWARE_REV
, NULL
, 0,
260 (unsigned char *) &olpc_platform_info
.ecver
, 1);
262 #ifdef CONFIG_PCI_OLPC
263 /* If the VSA exists let it emulate PCI, if not emulate in kernel.
265 if (olpc_platform_info
.boardrev
< olpc_board_pre(0xd0) &&
267 x86_init
.pci
.arch_init
= pci_olpc_init
;
270 printk(KERN_INFO
"OLPC board revision %s%X (EC=%x)\n",
271 ((olpc_platform_info
.boardrev
& 0xf) < 8) ? "pre" : "",
272 olpc_platform_info
.boardrev
>> 4,
273 olpc_platform_info
.ecver
);
275 if (olpc_platform_info
.boardrev
< olpc_board_pre(0xd0)) { /* XO-1 */
276 r
= add_xo1_platform_devices();
284 postcore_initcall(olpc_init
);