2 * USB BlackBerry charging module
4 * Copyright (C) 2007 Greg Kroah-Hartman <gregkh@suse.de>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
10 * Information on how to switch configs was taken by the bcharge.cc file
11 * created by the barry.sf.net project.
13 * bcharge.cc has the following copyright:
14 * Copyright (C) 2006, Net Direct Inc. (http://www.netdirect.ca/)
15 * and is released under the GPLv2.
20 #include <linux/kernel.h>
21 #include <linux/errno.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
25 #include <linux/usb.h>
27 #define RIM_VENDOR 0x0fca
28 #define BLACKBERRY 0x0001
29 #define BLACKBERRY_PEARL_DUAL 0x0004
30 #define BLACKBERRY_PEARL 0x0006
33 static int pearl_dual_mode
= 1;
38 #define dbg(dev, format, arg...) \
40 dev_printk(KERN_DEBUG , dev , format , ## arg)
42 static struct usb_device_id id_table
[] = {
43 { USB_DEVICE(RIM_VENDOR
, BLACKBERRY
) },
44 { USB_DEVICE(RIM_VENDOR
, BLACKBERRY_PEARL
) },
45 { USB_DEVICE(RIM_VENDOR
, BLACKBERRY_PEARL_DUAL
) },
46 { }, /* Terminating entry */
48 MODULE_DEVICE_TABLE(usb
, id_table
);
50 static int magic_charge(struct usb_device
*udev
)
52 char *dummy_buffer
= kzalloc(2, GFP_KERNEL
);
58 /* send two magic commands and then set the configuration. The device
59 * will then reset itself with the new power usage and should start
62 /* Note, with testing, it only seems that the first message is really
63 * needed (at least for the 8700c), but to be safe, we emulate what
64 * other operating systems seem to be sending to their device. We
65 * really need to get some specs for this device to be sure about what
68 dbg(&udev
->dev
, "Sending first magic command\n");
69 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
70 0xa5, 0xc0, 0, 1, dummy_buffer
, 2, 100);
72 dev_err(&udev
->dev
, "First magic command failed: %d.\n",
77 dbg(&udev
->dev
, "Sending second magic command\n");
78 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
79 0xa2, 0x40, 0, 1, dummy_buffer
, 0, 100);
81 dev_err(&udev
->dev
, "Second magic command failed: %d.\n",
86 dbg(&udev
->dev
, "Calling set_configuration\n");
87 retval
= usb_driver_set_configuration(udev
, 1);
89 dev_err(&udev
->dev
, "Set Configuration failed :%d.\n", retval
);
96 static int magic_dual_mode(struct usb_device
*udev
)
98 char *dummy_buffer
= kzalloc(2, GFP_KERNEL
);
104 /* send magic command so that the Blackberry Pearl device exposes
105 * two interfaces: both the USB mass-storage one and one which can
106 * be used for database access. */
107 dbg(&udev
->dev
, "Sending magic pearl command\n");
108 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
109 0xa9, 0xc0, 1, 1, dummy_buffer
, 2, 100);
110 dbg(&udev
->dev
, "Magic pearl command returned %d\n", retval
);
112 dbg(&udev
->dev
, "Calling set_configuration\n");
113 retval
= usb_driver_set_configuration(udev
, 1);
115 dev_err(&udev
->dev
, "Set Configuration failed :%d.\n", retval
);
121 static int berry_probe(struct usb_interface
*intf
,
122 const struct usb_device_id
*id
)
124 struct usb_device
*udev
= interface_to_usbdev(intf
);
126 dbg(&udev
->dev
, "Power is set to %dmA\n",
127 udev
->actconfig
->desc
.bMaxPower
* 2);
129 /* check the power usage so we don't try to enable something that is
131 if ((udev
->actconfig
->desc
.bMaxPower
* 2) == 500) {
132 dbg(&udev
->dev
, "device is already charging, power is "
133 "set to %dmA\n", udev
->actconfig
->desc
.bMaxPower
* 2);
137 /* turn the power on */
140 if ((le16_to_cpu(udev
->descriptor
.idProduct
) == BLACKBERRY_PEARL
) &&
142 magic_dual_mode(udev
);
144 /* we don't really want to bind to the device, userspace programs can
145 * handle the syncing just fine, so get outta here. */
149 static void berry_disconnect(struct usb_interface
*intf
)
153 static struct usb_driver berry_driver
= {
154 .name
= "berry_charge",
155 .probe
= berry_probe
,
156 .disconnect
= berry_disconnect
,
157 .id_table
= id_table
,
160 static int __init
berry_init(void)
162 return usb_register(&berry_driver
);
165 static void __exit
berry_exit(void)
167 usb_deregister(&berry_driver
);
170 module_init(berry_init
);
171 module_exit(berry_exit
);
173 MODULE_LICENSE("GPL");
174 MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@suse.de>");
175 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
176 MODULE_PARM_DESC(debug
, "Debug enabled or not");
177 module_param(pearl_dual_mode
, bool, S_IRUGO
| S_IWUSR
);
178 MODULE_PARM_DESC(pearl_dual_mode
, "Change Blackberry Pearl to run in dual mode");