2 * Support for rfkill through the OLPC XO-1 laptop embedded controller
4 * Copyright (C) 2010 One Laptop per Child
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.
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/rfkill.h>
15 #include <linux/olpc-ec.h>
17 static bool card_blocked
;
19 static int rfkill_set_block(void *data
, bool blocked
)
24 if (blocked
== card_blocked
)
28 cmd
= EC_WLAN_ENTER_RESET
;
30 cmd
= EC_WLAN_LEAVE_RESET
;
32 r
= olpc_ec_cmd(cmd
, NULL
, 0, NULL
, 0);
34 card_blocked
= blocked
;
39 static const struct rfkill_ops rfkill_ops
= {
40 .set_block
= rfkill_set_block
,
43 static int xo1_rfkill_probe(struct platform_device
*pdev
)
48 rfk
= rfkill_alloc(pdev
->name
, &pdev
->dev
, RFKILL_TYPE_WLAN
,
53 r
= rfkill_register(rfk
);
59 platform_set_drvdata(pdev
, rfk
);
63 static int xo1_rfkill_remove(struct platform_device
*pdev
)
65 struct rfkill
*rfk
= platform_get_drvdata(pdev
);
66 rfkill_unregister(rfk
);
71 static struct platform_driver xo1_rfkill_driver
= {
75 .probe
= xo1_rfkill_probe
,
76 .remove
= xo1_rfkill_remove
,
79 module_platform_driver(xo1_rfkill_driver
);
81 MODULE_AUTHOR("Daniel Drake <dsd@laptop.org>");
82 MODULE_LICENSE("GPL");
83 MODULE_ALIAS("platform:xo1-rfkill");