Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _LINUX_SPMI_H |
| 14 | #define _LINUX_SPMI_H |
| 15 | |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <linux/mod_devicetable.h> |
| 19 | |
| 20 | /* Maximum slave identifier */ |
| 21 | #define SPMI_MAX_SLAVE_ID 16 |
| 22 | |
| 23 | /* SPMI Commands */ |
| 24 | enum spmi_commands { |
| 25 | SPMI_CMD_EXT_WRITE = 0x00, |
| 26 | SPMI_CMD_RESET = 0x10, |
| 27 | SPMI_CMD_SLEEP = 0x11, |
| 28 | SPMI_CMD_SHUTDOWN = 0x12, |
| 29 | SPMI_CMD_WAKEUP = 0x13, |
| 30 | SPMI_CMD_AUTHENTICATE = 0x14, |
| 31 | SPMI_CMD_MSTR_READ = 0x15, |
| 32 | SPMI_CMD_MSTR_WRITE = 0x16, |
| 33 | SPMI_CMD_TRANSFER_BUS_OWNERSHIP = 0x1A, |
| 34 | SPMI_CMD_DDB_MASTER_READ = 0x1B, |
| 35 | SPMI_CMD_DDB_SLAVE_READ = 0x1C, |
| 36 | SPMI_CMD_EXT_READ = 0x20, |
| 37 | SPMI_CMD_EXT_WRITEL = 0x30, |
| 38 | SPMI_CMD_EXT_READL = 0x38, |
| 39 | SPMI_CMD_WRITE = 0x40, |
| 40 | SPMI_CMD_READ = 0x60, |
| 41 | SPMI_CMD_ZERO_WRITE = 0x80, |
| 42 | }; |
| 43 | |
| 44 | struct spmi_device; |
| 45 | |
| 46 | /** |
| 47 | * struct spmi_controller: interface to the SPMI master controller |
| 48 | * @nr: board-specific number identifier for this controller/bus |
| 49 | * @name: name for this controller |
| 50 | * @cmd: sends a non-data command sequence on the SPMI bus. |
| 51 | * @read_cmd: sends a register read command sequence on the SPMI bus. |
| 52 | * @write_cmd: sends a register write command sequence on the SPMI bus. |
| 53 | */ |
| 54 | struct spmi_controller { |
| 55 | struct device dev; |
| 56 | unsigned int nr; |
| 57 | struct list_head list; |
| 58 | int (*cmd)(struct spmi_controller *, u8 opcode, u8 sid); |
| 59 | int (*read_cmd)(struct spmi_controller *, |
| 60 | u8 opcode, u8 sid, u16 addr, u8 bc, u8 *buf); |
| 61 | int (*write_cmd)(struct spmi_controller *, |
| 62 | u8 opcode, u8 sid, u16 addr, u8 bc, u8 *buf); |
| 63 | }; |
| 64 | #define to_spmi_controller(d) container_of(d, struct spmi_controller, dev) |
| 65 | |
| 66 | /** |
| 67 | * struct spmi_driver: Manage SPMI generic/slave device driver |
| 68 | * @probe: binds this driver to a SPMI device. |
| 69 | * @remove: unbinds this driver from the SPMI device. |
| 70 | * @shutdown: standard shutdown callback used during powerdown/halt. |
| 71 | * @suspend: standard suspend callback used during system suspend |
| 72 | * @resume: standard resume callback used during system resume |
| 73 | * @driver: SPMI device drivers should initialize name and owner field of |
| 74 | * this structure |
| 75 | * @id_table: list of SPMI devices supported by this driver |
| 76 | */ |
| 77 | struct spmi_driver { |
| 78 | int (*probe)(struct spmi_device *dev); |
| 79 | int (*remove)(struct spmi_device *dev); |
| 80 | void (*shutdown)(struct spmi_device *dev); |
| 81 | int (*suspend)(struct spmi_device *dev, |
| 82 | pm_message_t pmesg); |
| 83 | int (*resume)(struct spmi_device *dev); |
| 84 | |
| 85 | struct device_driver driver; |
| 86 | const struct spmi_device_id *id_table; |
| 87 | }; |
| 88 | #define to_spmi_driver(d) container_of(d, struct spmi_driver, driver) |
| 89 | |
| 90 | /** |
Michael Bohan | 86622b3 | 2012-02-08 16:59:00 -0800 | [diff] [blame] | 91 | * struct spmi_resource: spmi_resource for one device_node |
| 92 | * @num_resources: number of resources for this device node |
| 93 | * @resources: array of resources for this device_node |
| 94 | * @of_node: device_node of the resource in question |
| 95 | */ |
| 96 | struct spmi_resource { |
| 97 | struct resource *resource; |
| 98 | u32 num_resources; |
| 99 | struct device_node *of_node; |
| 100 | }; |
| 101 | |
| 102 | /** |
Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 103 | * Client/device handle (struct spmi_device): |
| 104 | * ------------------------------------------ |
Michael Bohan | 86622b3 | 2012-02-08 16:59:00 -0800 | [diff] [blame] | 105 | * This is the client/device handle returned when a SPMI device |
| 106 | * is registered with a controller. |
| 107 | * Pointer to this structure is used by client-driver as a handle. |
| 108 | * @dev: Driver model representation of the device. |
| 109 | * @name: Name of driver to use with this device. |
| 110 | * @ctrl: SPMI controller managing the bus hosting this device. |
| 111 | * @dev_node: array of SPMI resources - one entry per device_node. |
| 112 | * @num_dev_node: number of device_node structures. |
| 113 | * @sid: Slave Identifier. |
Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 114 | */ |
| 115 | struct spmi_device { |
| 116 | struct device dev; |
| 117 | const char *name; |
| 118 | struct spmi_controller *ctrl; |
Michael Bohan | 86622b3 | 2012-02-08 16:59:00 -0800 | [diff] [blame] | 119 | struct spmi_resource *dev_node; |
| 120 | u32 num_dev_node; |
Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 121 | u8 sid; |
| 122 | }; |
| 123 | #define to_spmi_device(d) container_of(d, struct spmi_device, dev) |
| 124 | |
| 125 | /** |
| 126 | * struct spmi_boardinfo: Declare board info for SPMI device bringup. |
| 127 | * @slave_id: slave identifier. |
| 128 | * @spmi_device: device to be registered with the SPMI framework. |
| 129 | * @of_node: pointer to the OpenFirmware device node. |
Michael Bohan | 86622b3 | 2012-02-08 16:59:00 -0800 | [diff] [blame] | 130 | * @dev_node: one spmi_resource for each device_node. |
| 131 | * @num_dev_node: number of device_node structures. |
Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 132 | * @platform_data: goes to spmi_device.dev.platform_data |
| 133 | */ |
| 134 | struct spmi_boardinfo { |
| 135 | char name[SPMI_NAME_SIZE]; |
| 136 | uint8_t slave_id; |
| 137 | struct device_node *of_node; |
Michael Bohan | 86622b3 | 2012-02-08 16:59:00 -0800 | [diff] [blame] | 138 | struct spmi_resource *dev_node; |
| 139 | u32 num_dev_node; |
Kenneth Heitke | ee44ade | 2012-02-08 13:45:33 -0700 | [diff] [blame] | 140 | const void *platform_data; |
| 141 | }; |
| 142 | |
| 143 | /** |
| 144 | * spmi_driver_register: Client driver registration with SPMI framework. |
| 145 | * @drv: client driver to be associated with client-device. |
| 146 | * |
| 147 | * This API will register the client driver with the SPMI framework. |
| 148 | * It is called from the driver's module-init function. |
| 149 | */ |
| 150 | extern int spmi_driver_register(struct spmi_driver *drv); |
| 151 | |
| 152 | /** |
| 153 | * spmi_driver_unregister - reverse effect of spmi_driver_register |
| 154 | * @sdrv: the driver to unregister |
| 155 | * Context: can sleep |
| 156 | */ |
| 157 | static inline void spmi_driver_unregister(struct spmi_driver *sdrv) |
| 158 | { |
| 159 | if (sdrv) |
| 160 | driver_unregister(&sdrv->driver); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * spmi_add_controller: Controller bring-up. |
| 165 | * @ctrl: controller to be registered. |
| 166 | * |
| 167 | * A controller is registered with the framework using this API. ctrl->nr is the |
| 168 | * desired number with which SPMI framework registers the controller. |
| 169 | * Function will return -EBUSY if the number is in use. |
| 170 | */ |
| 171 | extern int spmi_add_controller(struct spmi_controller *ctrl); |
| 172 | |
| 173 | /** |
| 174 | * spmi_del_controller: Controller tear-down. |
| 175 | * Controller added with the above API is teared down using this API. |
| 176 | */ |
| 177 | extern int spmi_del_controller(struct spmi_controller *ctrl); |
| 178 | |
| 179 | /** |
| 180 | * spmi_busnum_to_ctrl: Map bus number to controller |
| 181 | * @busnum: bus number |
| 182 | * |
| 183 | * Returns controller device representing this bus number |
| 184 | */ |
| 185 | extern struct spmi_controller *spmi_busnum_to_ctrl(u32 bus_num); |
| 186 | |
| 187 | /** |
| 188 | * spmi_alloc_device: Allocate a new SPMI devices. |
| 189 | * @ctrl: controller to which this device is to be added to. |
| 190 | * Context: can sleep |
| 191 | * |
| 192 | * Allows a driver to allocate and initialize a SPMI device without |
| 193 | * registering it immediately. This allows a driver to directly fill |
| 194 | * the spmi_device structure before calling spmi_add_device(). |
| 195 | * |
| 196 | * Caller is responsible to call spmi_add_device() on the returned |
| 197 | * spmi_device. If the caller needs to discard the spmi_device without |
| 198 | * adding it, then spmi_dev_put() should be called. |
| 199 | */ |
| 200 | extern struct spmi_device *spmi_alloc_device(struct spmi_controller *ctrl); |
| 201 | |
| 202 | /** |
| 203 | * spmi_add_device: Add spmi_device allocated with spmi_alloc_device(). |
| 204 | * @spmi_dev: spmi_device to be added (registered). |
| 205 | */ |
| 206 | extern int spmi_add_device(struct spmi_device *spmi_dev); |
| 207 | |
| 208 | /** |
| 209 | * spmi_new_device: Instantiates a new SPMI device |
| 210 | * @ctrl: controller to which this device is to be added to. |
| 211 | * @info: board information for this device. |
| 212 | * |
| 213 | * Returns the new device or NULL. |
| 214 | */ |
| 215 | extern struct spmi_device *spmi_new_device(struct spmi_controller *ctrl, |
| 216 | struct spmi_boardinfo const *info); |
| 217 | |
| 218 | /* spmi_remove_device: Remove the effect of spmi_add_device() */ |
| 219 | extern void spmi_remove_device(struct spmi_device *spmi_dev); |
| 220 | |
| 221 | #ifdef CONFIG_SPMI |
| 222 | /** |
| 223 | * spmi_register_board_info: Board-initialization routine. |
| 224 | * @bus_num: controller number (bus) on which this device will sit. |
| 225 | * @info: list of all devices on all controllers present on the board. |
| 226 | * @n: number of entries. |
| 227 | * |
| 228 | * API enumerates respective devices on corresponding controller. |
| 229 | * Called from board-init function. |
| 230 | */ |
| 231 | extern int spmi_register_board_info(int busnum, |
| 232 | struct spmi_boardinfo const *info, unsigned n); |
| 233 | #else |
| 234 | static inline int spmi_register_board_info(int busnum, |
| 235 | struct spmi_boardinfo const *info, unsigned n) |
| 236 | { |
| 237 | return 0; |
| 238 | } |
| 239 | #endif |
| 240 | |
| 241 | static inline void *spmi_get_ctrldata(const struct spmi_controller *ctrl) |
| 242 | { |
| 243 | return dev_get_drvdata(&ctrl->dev); |
| 244 | } |
| 245 | |
| 246 | static inline void spmi_set_ctrldata(struct spmi_controller *ctrl, void *data) |
| 247 | { |
| 248 | dev_set_drvdata(&ctrl->dev, data); |
| 249 | } |
| 250 | |
| 251 | static inline void *spmi_get_devicedata(const struct spmi_device *dev) |
| 252 | { |
| 253 | return dev_get_drvdata(&dev->dev); |
| 254 | } |
| 255 | |
| 256 | static inline void spmi_set_devicedata(struct spmi_device *dev, void *data) |
| 257 | { |
| 258 | dev_set_drvdata(&dev->dev, data); |
| 259 | } |
| 260 | |
| 261 | static inline void spmi_dev_put(struct spmi_device *spmidev) |
| 262 | { |
| 263 | if (spmidev) |
| 264 | put_device(&spmidev->dev); |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * spmi_register_read() - register read |
| 269 | * @ctrl: SPMI controller. |
| 270 | * @sid: slave identifier. |
| 271 | * @ad: slave register address (5-bit address). |
| 272 | * @buf: buffer to be populated with data from the Slave. |
| 273 | * |
| 274 | * Reads 1 byte of data from a Slave device register. |
| 275 | */ |
| 276 | extern int spmi_register_read(struct spmi_controller *ctrl, |
| 277 | u8 sid, u8 ad, u8 *buf); |
| 278 | |
| 279 | /** |
| 280 | * spmi_ext_register_read() - extended register read |
| 281 | * @ctrl: SPMI controller. |
| 282 | * @sid: slave identifier. |
| 283 | * @ad: slave register address (8-bit address). |
| 284 | * @len: the request number of bytes to read (up to 16 bytes). |
| 285 | * @buf: buffer to be populated with data from the Slave. |
| 286 | * |
| 287 | * Reads up to 16 bytes of data from the extended register space on a |
| 288 | * Slave device. |
| 289 | */ |
| 290 | extern int spmi_ext_register_read(struct spmi_controller *ctrl, |
| 291 | u8 sid, u8 ad, u8 *buf, int len); |
| 292 | |
| 293 | /** |
| 294 | * spmi_ext_register_readl() - extended register read long |
| 295 | * @ctrl: SPMI controller. |
| 296 | * @sid: slave identifier. |
| 297 | * @ad: slave register address (16-bit address). |
| 298 | * @len: the request number of bytes to read (up to 8 bytes). |
| 299 | * @buf: buffer to be populated with data from the Slave. |
| 300 | * |
| 301 | * Reads up to 8 bytes of data from the extended register space on a |
| 302 | * Slave device using 16-bit address. |
| 303 | */ |
| 304 | extern int spmi_ext_register_readl(struct spmi_controller *ctrl, |
| 305 | u8 sid, u16 ad, u8 *buf, int len); |
| 306 | |
| 307 | /** |
| 308 | * spmi_register_write() - register write |
| 309 | * @ctrl: SPMI controller. |
| 310 | * @sid: slave identifier. |
| 311 | * @ad: slave register address (5-bit address). |
| 312 | * @buf: buffer containing the data to be transferred to the Slave. |
| 313 | * |
| 314 | * Writes 1 byte of data to a Slave device register. |
| 315 | */ |
| 316 | extern int spmi_register_write(struct spmi_controller *ctrl, |
| 317 | u8 sid, u8 ad, u8 *buf); |
| 318 | |
| 319 | /** |
| 320 | * spmi_register_zero_write() - register zero write |
| 321 | * @ctrl: SPMI controller. |
| 322 | * @sid: slave identifier. |
| 323 | * @data: the data to be written to register 0 (7-bits). |
| 324 | * |
| 325 | * Writes data to register 0 of the Slave device. |
| 326 | */ |
| 327 | extern int spmi_register_zero_write(struct spmi_controller *ctrl, |
| 328 | u8 sid, u8 data); |
| 329 | |
| 330 | /** |
| 331 | * spmi_ext_register_write() - extended register write |
| 332 | * @ctrl: SPMI controller. |
| 333 | * @sid: slave identifier. |
| 334 | * @ad: slave register address (8-bit address). |
| 335 | * @buf: buffer containing the data to be transferred to the Slave. |
| 336 | * @len: the request number of bytes to read (up to 16 bytes). |
| 337 | * |
| 338 | * Writes up to 16 bytes of data to the extended register space of a |
| 339 | * Slave device. |
| 340 | */ |
| 341 | extern int spmi_ext_register_write(struct spmi_controller *ctrl, |
| 342 | u8 sid, u8 ad, u8 *buf, int len); |
| 343 | |
| 344 | /** |
| 345 | * spmi_ext_register_writel() - extended register write long |
| 346 | * @ctrl: SPMI controller. |
| 347 | * @sid: slave identifier. |
| 348 | * @ad: slave register address (16-bit address). |
| 349 | * @buf: buffer containing the data to be transferred to the Slave. |
| 350 | * @len: the request number of bytes to read (up to 8 bytes). |
| 351 | * |
| 352 | * Writes up to 8 bytes of data to the extended register space of a |
| 353 | * Slave device using 16-bit address. |
| 354 | */ |
| 355 | extern int spmi_ext_register_writel(struct spmi_controller *ctrl, |
| 356 | u8 sid, u16 ad, u8 *buf, int len); |
| 357 | |
| 358 | /** |
| 359 | * spmi_command_reset() - sends RESET command to the specified slave |
| 360 | * @ctrl: SPMI controller. |
| 361 | * @sid: slave identifier. |
| 362 | * |
| 363 | * The Reset command initializes the Slave and forces all registers to |
| 364 | * their reset values. The Slave shall enter the STARTUP state after |
| 365 | * receiving a Reset command. |
| 366 | * |
| 367 | * Returns |
| 368 | * -EINVAL for invalid slave identifier. |
| 369 | * -EPERM if the SPMI transaction is denied due to permission issues. |
| 370 | * -EIO if the SPMI transaction fails (parity errors, etc). |
| 371 | * -ETIMEDOUT if the SPMI transaction times out. |
| 372 | */ |
| 373 | extern int spmi_command_reset(struct spmi_controller *ctrl, u8 sid); |
| 374 | |
| 375 | /** |
| 376 | * spmi_command_sleep() - sends SLEEP command to the specified slave |
| 377 | * @ctrl: SPMI controller. |
| 378 | * @sid: slave identifier. |
| 379 | * |
| 380 | * The Sleep command causes the Slave to enter the user defined SLEEP state. |
| 381 | * |
| 382 | * Returns |
| 383 | * -EINVAL for invalid slave identifier. |
| 384 | * -EPERM if the SPMI transaction is denied due to permission issues. |
| 385 | * -EIO if the SPMI transaction fails (parity errors, etc). |
| 386 | * -ETIMEDOUT if the SPMI transaction times out. |
| 387 | */ |
| 388 | extern int spmi_command_sleep(struct spmi_controller *ctrl, u8 sid); |
| 389 | |
| 390 | /** |
| 391 | * spmi_command_wakeup() - sends WAKEUP command to the specified slave |
| 392 | * @ctrl: SPMI controller. |
| 393 | * @sid: slave identifier. |
| 394 | * |
| 395 | * The Wakeup command causes the Slave to move from the SLEEP state to |
| 396 | * the ACTIVE state. |
| 397 | * |
| 398 | * Returns |
| 399 | * -EINVAL for invalid slave identifier. |
| 400 | * -EPERM if the SPMI transaction is denied due to permission issues. |
| 401 | * -EIO if the SPMI transaction fails (parity errors, etc). |
| 402 | * -ETIMEDOUT if the SPMI transaction times out. |
| 403 | */ |
| 404 | extern int spmi_command_wakeup(struct spmi_controller *ctrl, u8 sid); |
| 405 | |
| 406 | /** |
| 407 | * spmi_command_shutdown() - sends SHUTDOWN command to the specified slave |
| 408 | * @ctrl: SPMI controller. |
| 409 | * @sid: slave identifier. |
| 410 | * |
| 411 | * The Shutdown command causes the Slave to enter the SHUTDOWN state. |
| 412 | * |
| 413 | * Returns |
| 414 | * -EINVAL for invalid slave identifier. |
| 415 | * -EPERM if the SPMI transaction is denied due to permission issues. |
| 416 | * -EIO if the SPMI transaction fails (parity errors, etc). |
| 417 | * -ETIMEDOUT if the SPMI transaction times out. |
| 418 | */ |
| 419 | extern int spmi_command_shutdown(struct spmi_controller *ctrl, u8 sid); |
| 420 | #endif |