Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 2 | * arch/powerpc/platforms/powermac/low_i2c.c |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 3 | * |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 4 | * Copyright (C) 2003-2005 Ben. Herrenschmidt (benh@kernel.crashing.org) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 11 | * The linux i2c layer isn't completely suitable for our needs for various |
| 12 | * reasons ranging from too late initialisation to semantics not perfectly |
| 13 | * matching some requirements of the apple platform functions etc... |
| 14 | * |
| 15 | * This file thus provides a simple low level unified i2c interface for |
| 16 | * powermac that covers the various types of i2c busses used in Apple machines. |
| 17 | * For now, keywest, PMU and SMU, though we could add Cuda, or other bit |
| 18 | * banging busses found on older chipstes in earlier machines if we ever need |
| 19 | * one of them. |
| 20 | * |
| 21 | * The drivers in this file are synchronous/blocking. In addition, the |
| 22 | * keywest one is fairly slow due to the use of msleep instead of interrupts |
| 23 | * as the interrupt is currently used by i2c-keywest. In the long run, we |
| 24 | * might want to get rid of those high-level interfaces to linux i2c layer |
| 25 | * either completely (converting all drivers) or replacing them all with a |
| 26 | * single stub driver on top of this one. Once done, the interrupt will be |
| 27 | * available for our use. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 28 | */ |
| 29 | |
| 30 | #undef DEBUG |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 31 | #undef DEBUG_LOW |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 32 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 33 | #include <linux/types.h> |
| 34 | #include <linux/sched.h> |
| 35 | #include <linux/init.h> |
| 36 | #include <linux/module.h> |
| 37 | #include <linux/adb.h> |
| 38 | #include <linux/pmu.h> |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 39 | #include <linux/delay.h> |
| 40 | #include <linux/completion.h> |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 41 | #include <linux/platform_device.h> |
| 42 | #include <linux/interrupt.h> |
| 43 | #include <linux/completion.h> |
| 44 | #include <linux/timer.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 45 | #include <asm/keylargo.h> |
| 46 | #include <asm/uninorth.h> |
| 47 | #include <asm/io.h> |
| 48 | #include <asm/prom.h> |
| 49 | #include <asm/machdep.h> |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 50 | #include <asm/smu.h> |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 51 | #include <asm/pmac_pfunc.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 52 | #include <asm/pmac_low_i2c.h> |
| 53 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 54 | #ifdef DEBUG |
| 55 | #define DBG(x...) do {\ |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 56 | printk(KERN_DEBUG "low_i2c:" x); \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 57 | } while(0) |
| 58 | #else |
| 59 | #define DBG(x...) |
| 60 | #endif |
| 61 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 62 | #ifdef DEBUG_LOW |
| 63 | #define DBG_LOW(x...) do {\ |
| 64 | printk(KERN_DEBUG "low_i2c:" x); \ |
| 65 | } while(0) |
| 66 | #else |
| 67 | #define DBG_LOW(x...) |
| 68 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 69 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 70 | |
| 71 | static int pmac_i2c_force_poll = 1; |
| 72 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 73 | /* |
| 74 | * A bus structure. Each bus in the system has such a structure associated. |
| 75 | */ |
| 76 | struct pmac_i2c_bus |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 77 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 78 | struct list_head link; |
| 79 | struct device_node *controller; |
| 80 | struct device_node *busnode; |
| 81 | int type; |
| 82 | int flags; |
| 83 | struct i2c_adapter *adapter; |
| 84 | void *hostdata; |
| 85 | int channel; /* some hosts have multiple */ |
| 86 | int mode; /* current mode */ |
| 87 | struct semaphore sem; |
| 88 | int opened; |
| 89 | int polled; /* open mode */ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 90 | struct platform_device *platform_dev; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 91 | |
| 92 | /* ops */ |
| 93 | int (*open)(struct pmac_i2c_bus *bus); |
| 94 | void (*close)(struct pmac_i2c_bus *bus); |
| 95 | int (*xfer)(struct pmac_i2c_bus *bus, u8 addrdir, int subsize, |
| 96 | u32 subaddr, u8 *data, int len); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 97 | }; |
| 98 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 99 | static LIST_HEAD(pmac_i2c_busses); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 100 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 101 | /* |
| 102 | * Keywest implementation |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 103 | */ |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 104 | |
| 105 | struct pmac_i2c_host_kw |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 106 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 107 | struct semaphore mutex; /* Access mutex for use by |
| 108 | * i2c-keywest */ |
| 109 | void __iomem *base; /* register base address */ |
| 110 | int bsteps; /* register stepping */ |
| 111 | int speed; /* speed */ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 112 | int irq; |
| 113 | u8 *data; |
| 114 | unsigned len; |
| 115 | int state; |
| 116 | int rw; |
| 117 | int polled; |
| 118 | int result; |
| 119 | struct completion complete; |
| 120 | spinlock_t lock; |
| 121 | struct timer_list timeout_timer; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 122 | }; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 123 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 124 | /* Register indices */ |
| 125 | typedef enum { |
| 126 | reg_mode = 0, |
| 127 | reg_control, |
| 128 | reg_status, |
| 129 | reg_isr, |
| 130 | reg_ier, |
| 131 | reg_addr, |
| 132 | reg_subaddr, |
| 133 | reg_data |
| 134 | } reg_t; |
| 135 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 136 | /* The Tumbler audio equalizer can be really slow sometimes */ |
| 137 | #define KW_POLL_TIMEOUT (2*HZ) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 138 | |
| 139 | /* Mode register */ |
| 140 | #define KW_I2C_MODE_100KHZ 0x00 |
| 141 | #define KW_I2C_MODE_50KHZ 0x01 |
| 142 | #define KW_I2C_MODE_25KHZ 0x02 |
| 143 | #define KW_I2C_MODE_DUMB 0x00 |
| 144 | #define KW_I2C_MODE_STANDARD 0x04 |
| 145 | #define KW_I2C_MODE_STANDARDSUB 0x08 |
| 146 | #define KW_I2C_MODE_COMBINED 0x0C |
| 147 | #define KW_I2C_MODE_MODE_MASK 0x0C |
| 148 | #define KW_I2C_MODE_CHAN_MASK 0xF0 |
| 149 | |
| 150 | /* Control register */ |
| 151 | #define KW_I2C_CTL_AAK 0x01 |
| 152 | #define KW_I2C_CTL_XADDR 0x02 |
| 153 | #define KW_I2C_CTL_STOP 0x04 |
| 154 | #define KW_I2C_CTL_START 0x08 |
| 155 | |
| 156 | /* Status register */ |
| 157 | #define KW_I2C_STAT_BUSY 0x01 |
| 158 | #define KW_I2C_STAT_LAST_AAK 0x02 |
| 159 | #define KW_I2C_STAT_LAST_RW 0x04 |
| 160 | #define KW_I2C_STAT_SDA 0x08 |
| 161 | #define KW_I2C_STAT_SCL 0x10 |
| 162 | |
| 163 | /* IER & ISR registers */ |
| 164 | #define KW_I2C_IRQ_DATA 0x01 |
| 165 | #define KW_I2C_IRQ_ADDR 0x02 |
| 166 | #define KW_I2C_IRQ_STOP 0x04 |
| 167 | #define KW_I2C_IRQ_START 0x08 |
| 168 | #define KW_I2C_IRQ_MASK 0x0F |
| 169 | |
| 170 | /* State machine states */ |
| 171 | enum { |
| 172 | state_idle, |
| 173 | state_addr, |
| 174 | state_read, |
| 175 | state_write, |
| 176 | state_stop, |
| 177 | state_dead |
| 178 | }; |
| 179 | |
| 180 | #define WRONG_STATE(name) do {\ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 181 | printk(KERN_DEBUG "KW: wrong state. Got %s, state: %s " \ |
| 182 | "(isr: %02x)\n", \ |
| 183 | name, __kw_state_names[host->state], isr); \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 184 | } while(0) |
| 185 | |
| 186 | static const char *__kw_state_names[] = { |
| 187 | "state_idle", |
| 188 | "state_addr", |
| 189 | "state_read", |
| 190 | "state_write", |
| 191 | "state_stop", |
| 192 | "state_dead" |
| 193 | }; |
| 194 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 195 | static inline u8 __kw_read_reg(struct pmac_i2c_host_kw *host, reg_t reg) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 196 | { |
| 197 | return readb(host->base + (((unsigned int)reg) << host->bsteps)); |
| 198 | } |
| 199 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 200 | static inline void __kw_write_reg(struct pmac_i2c_host_kw *host, |
| 201 | reg_t reg, u8 val) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 202 | { |
| 203 | writeb(val, host->base + (((unsigned)reg) << host->bsteps)); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 204 | (void)__kw_read_reg(host, reg_subaddr); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 205 | } |
| 206 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 207 | #define kw_write_reg(reg, val) __kw_write_reg(host, reg, val) |
| 208 | #define kw_read_reg(reg) __kw_read_reg(host, reg) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 209 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 210 | static u8 kw_i2c_wait_interrupt(struct pmac_i2c_host_kw *host) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 211 | { |
| 212 | int i, j; |
| 213 | u8 isr; |
| 214 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 215 | for (i = 0; i < 1000; i++) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 216 | isr = kw_read_reg(reg_isr) & KW_I2C_IRQ_MASK; |
| 217 | if (isr != 0) |
| 218 | return isr; |
| 219 | |
| 220 | /* This code is used with the timebase frozen, we cannot rely |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 221 | * on udelay nor schedule when in polled mode ! |
| 222 | * For now, just use a bogus loop.... |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 223 | */ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 224 | if (host->polled) { |
| 225 | for (j = 1; j < 100000; j++) |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 226 | mb(); |
| 227 | } else |
| 228 | msleep(1); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 229 | } |
| 230 | return isr; |
| 231 | } |
| 232 | |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 233 | static void kw_i2c_do_stop(struct pmac_i2c_host_kw *host, int result) |
| 234 | { |
| 235 | kw_write_reg(reg_control, KW_I2C_CTL_STOP); |
| 236 | host->state = state_stop; |
| 237 | host->result = result; |
| 238 | } |
| 239 | |
| 240 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 241 | static void kw_i2c_handle_interrupt(struct pmac_i2c_host_kw *host, u8 isr) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 242 | { |
| 243 | u8 ack; |
| 244 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 245 | DBG_LOW("kw_handle_interrupt(%s, isr: %x)\n", |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 246 | __kw_state_names[host->state], isr); |
| 247 | |
| 248 | if (host->state == state_idle) { |
| 249 | printk(KERN_WARNING "low_i2c: Keywest got an out of state" |
| 250 | " interrupt, ignoring\n"); |
| 251 | kw_write_reg(reg_isr, isr); |
| 252 | return; |
| 253 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 254 | |
| 255 | if (isr == 0) { |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 256 | printk(KERN_WARNING "low_i2c: Timeout in i2c transfer" |
| 257 | " on keywest !\n"); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 258 | if (host->state != state_stop) { |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 259 | kw_i2c_do_stop(host, -EIO); |
| 260 | return; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 261 | } |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 262 | ack = kw_read_reg(reg_status); |
| 263 | if (ack & KW_I2C_STAT_BUSY) |
| 264 | kw_write_reg(reg_status, 0); |
| 265 | host->state = state_idle; |
| 266 | kw_write_reg(reg_ier, 0x00); |
| 267 | if (!host->polled) |
| 268 | complete(&host->complete); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 269 | return; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | if (isr & KW_I2C_IRQ_ADDR) { |
| 273 | ack = kw_read_reg(reg_status); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 274 | if (host->state != state_addr) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 275 | WRONG_STATE("KW_I2C_IRQ_ADDR"); |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 276 | kw_i2c_do_stop(host, -EIO); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 277 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 278 | if ((ack & KW_I2C_STAT_LAST_AAK) == 0) { |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 279 | host->result = -ENXIO; |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 280 | host->state = state_stop; |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 281 | DBG_LOW("KW: NAK on address\n"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 282 | } else { |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 283 | if (host->len == 0) |
| 284 | kw_i2c_do_stop(host, 0); |
| 285 | else if (host->rw) { |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 286 | host->state = state_read; |
| 287 | if (host->len > 1) |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 288 | kw_write_reg(reg_control, |
| 289 | KW_I2C_CTL_AAK); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 290 | } else { |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 291 | host->state = state_write; |
| 292 | kw_write_reg(reg_data, *(host->data++)); |
| 293 | host->len--; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | kw_write_reg(reg_isr, KW_I2C_IRQ_ADDR); |
| 297 | } |
| 298 | |
| 299 | if (isr & KW_I2C_IRQ_DATA) { |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 300 | if (host->state == state_read) { |
| 301 | *(host->data++) = kw_read_reg(reg_data); |
| 302 | host->len--; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 303 | kw_write_reg(reg_isr, KW_I2C_IRQ_DATA); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 304 | if (host->len == 0) |
| 305 | host->state = state_stop; |
| 306 | else if (host->len == 1) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 307 | kw_write_reg(reg_control, 0); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 308 | } else if (host->state == state_write) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 309 | ack = kw_read_reg(reg_status); |
| 310 | if ((ack & KW_I2C_STAT_LAST_AAK) == 0) { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 311 | DBG_LOW("KW: nack on data write\n"); |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 312 | host->result = -EFBIG; |
| 313 | host->state = state_stop; |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 314 | } else if (host->len) { |
| 315 | kw_write_reg(reg_data, *(host->data++)); |
| 316 | host->len--; |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 317 | } else |
| 318 | kw_i2c_do_stop(host, 0); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 319 | } else { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 320 | WRONG_STATE("KW_I2C_IRQ_DATA"); |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 321 | if (host->state != state_stop) |
| 322 | kw_i2c_do_stop(host, -EIO); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 323 | } |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 324 | kw_write_reg(reg_isr, KW_I2C_IRQ_DATA); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | if (isr & KW_I2C_IRQ_STOP) { |
| 328 | kw_write_reg(reg_isr, KW_I2C_IRQ_STOP); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 329 | if (host->state != state_stop) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 330 | WRONG_STATE("KW_I2C_IRQ_STOP"); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 331 | host->result = -EIO; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 332 | } |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 333 | host->state = state_idle; |
| 334 | if (!host->polled) |
| 335 | complete(&host->complete); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 336 | } |
| 337 | |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 338 | /* Below should only happen in manual mode which we don't use ... */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 339 | if (isr & KW_I2C_IRQ_START) |
| 340 | kw_write_reg(reg_isr, KW_I2C_IRQ_START); |
| 341 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /* Interrupt handler */ |
| 345 | static irqreturn_t kw_i2c_irq(int irq, void *dev_id, struct pt_regs *regs) |
| 346 | { |
| 347 | struct pmac_i2c_host_kw *host = dev_id; |
| 348 | unsigned long flags; |
| 349 | |
| 350 | spin_lock_irqsave(&host->lock, flags); |
| 351 | del_timer(&host->timeout_timer); |
| 352 | kw_i2c_handle_interrupt(host, kw_read_reg(reg_isr)); |
| 353 | if (host->state != state_idle) { |
| 354 | host->timeout_timer.expires = jiffies + KW_POLL_TIMEOUT; |
| 355 | add_timer(&host->timeout_timer); |
| 356 | } |
| 357 | spin_unlock_irqrestore(&host->lock, flags); |
| 358 | return IRQ_HANDLED; |
| 359 | } |
| 360 | |
| 361 | static void kw_i2c_timeout(unsigned long data) |
| 362 | { |
| 363 | struct pmac_i2c_host_kw *host = (struct pmac_i2c_host_kw *)data; |
| 364 | unsigned long flags; |
| 365 | |
| 366 | spin_lock_irqsave(&host->lock, flags); |
| 367 | kw_i2c_handle_interrupt(host, kw_read_reg(reg_isr)); |
| 368 | if (host->state != state_idle) { |
| 369 | host->timeout_timer.expires = jiffies + KW_POLL_TIMEOUT; |
| 370 | add_timer(&host->timeout_timer); |
| 371 | } |
| 372 | spin_unlock_irqrestore(&host->lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 373 | } |
| 374 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 375 | static int kw_i2c_open(struct pmac_i2c_bus *bus) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 376 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 377 | struct pmac_i2c_host_kw *host = bus->hostdata; |
| 378 | down(&host->mutex); |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | static void kw_i2c_close(struct pmac_i2c_bus *bus) |
| 383 | { |
| 384 | struct pmac_i2c_host_kw *host = bus->hostdata; |
| 385 | up(&host->mutex); |
| 386 | } |
| 387 | |
| 388 | static int kw_i2c_xfer(struct pmac_i2c_bus *bus, u8 addrdir, int subsize, |
| 389 | u32 subaddr, u8 *data, int len) |
| 390 | { |
| 391 | struct pmac_i2c_host_kw *host = bus->hostdata; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 392 | u8 mode_reg = host->speed; |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 393 | int use_irq = host->irq != NO_IRQ && !bus->polled; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 394 | |
| 395 | /* Setup mode & subaddress if any */ |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 396 | switch(bus->mode) { |
| 397 | case pmac_i2c_mode_dumb: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 398 | return -EINVAL; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 399 | case pmac_i2c_mode_std: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 400 | mode_reg |= KW_I2C_MODE_STANDARD; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 401 | if (subsize != 0) |
| 402 | return -EINVAL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 403 | break; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 404 | case pmac_i2c_mode_stdsub: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 405 | mode_reg |= KW_I2C_MODE_STANDARDSUB; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 406 | if (subsize != 1) |
| 407 | return -EINVAL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 408 | break; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 409 | case pmac_i2c_mode_combined: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 410 | mode_reg |= KW_I2C_MODE_COMBINED; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 411 | if (subsize != 1) |
| 412 | return -EINVAL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 413 | break; |
| 414 | } |
| 415 | |
| 416 | /* Setup channel & clear pending irqs */ |
| 417 | kw_write_reg(reg_isr, kw_read_reg(reg_isr)); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 418 | kw_write_reg(reg_mode, mode_reg | (bus->channel << 4)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 419 | kw_write_reg(reg_status, 0); |
| 420 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 421 | /* Set up address and r/w bit, strip possible stale bus number from |
| 422 | * address top bits |
| 423 | */ |
| 424 | kw_write_reg(reg_addr, addrdir & 0xff); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 425 | |
| 426 | /* Set up the sub address */ |
| 427 | if ((mode_reg & KW_I2C_MODE_MODE_MASK) == KW_I2C_MODE_STANDARDSUB |
| 428 | || (mode_reg & KW_I2C_MODE_MODE_MASK) == KW_I2C_MODE_COMBINED) |
| 429 | kw_write_reg(reg_subaddr, subaddr); |
| 430 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 431 | /* Prepare for async operations */ |
| 432 | host->data = data; |
| 433 | host->len = len; |
| 434 | host->state = state_addr; |
| 435 | host->result = 0; |
| 436 | host->rw = (addrdir & 1); |
| 437 | host->polled = bus->polled; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 438 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 439 | /* Enable interrupt if not using polled mode and interrupt is |
| 440 | * available |
| 441 | */ |
| 442 | if (use_irq) { |
| 443 | /* Clear completion */ |
| 444 | INIT_COMPLETION(host->complete); |
| 445 | /* Ack stale interrupts */ |
| 446 | kw_write_reg(reg_isr, kw_read_reg(reg_isr)); |
| 447 | /* Arm timeout */ |
| 448 | host->timeout_timer.expires = jiffies + KW_POLL_TIMEOUT; |
| 449 | add_timer(&host->timeout_timer); |
| 450 | /* Enable emission */ |
| 451 | kw_write_reg(reg_ier, KW_I2C_IRQ_MASK); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 452 | } |
| 453 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 454 | /* Start sending address */ |
| 455 | kw_write_reg(reg_control, KW_I2C_CTL_XADDR); |
| 456 | |
| 457 | /* Wait for completion */ |
| 458 | if (use_irq) |
| 459 | wait_for_completion(&host->complete); |
| 460 | else { |
| 461 | while(host->state != state_idle) { |
| 462 | unsigned long flags; |
| 463 | |
| 464 | u8 isr = kw_i2c_wait_interrupt(host); |
| 465 | spin_lock_irqsave(&host->lock, flags); |
| 466 | kw_i2c_handle_interrupt(host, isr); |
| 467 | spin_unlock_irqrestore(&host->lock, flags); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | /* Disable emission */ |
| 472 | kw_write_reg(reg_ier, 0); |
| 473 | |
| 474 | return host->result; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 475 | } |
| 476 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 477 | static struct pmac_i2c_host_kw *__init kw_i2c_host_init(struct device_node *np) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 478 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 479 | struct pmac_i2c_host_kw *host; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 480 | const u32 *psteps, *prate, *addrp; |
| 481 | u32 steps; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 482 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 483 | host = kzalloc(sizeof(struct pmac_i2c_host_kw), GFP_KERNEL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 484 | if (host == NULL) { |
| 485 | printk(KERN_ERR "low_i2c: Can't allocate host for %s\n", |
| 486 | np->full_name); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 487 | return NULL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 488 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 489 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 490 | /* Apple is kind enough to provide a valid AAPL,address property |
| 491 | * on all i2c keywest nodes so far ... we would have to fallback |
| 492 | * to macio parsing if that wasn't the case |
| 493 | */ |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 494 | addrp = get_property(np, "AAPL,address", NULL); |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 495 | if (addrp == NULL) { |
| 496 | printk(KERN_ERR "low_i2c: Can't find address for %s\n", |
| 497 | np->full_name); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 498 | kfree(host); |
| 499 | return NULL; |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 500 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 501 | init_MUTEX(&host->mutex); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 502 | init_completion(&host->complete); |
| 503 | spin_lock_init(&host->lock); |
| 504 | init_timer(&host->timeout_timer); |
| 505 | host->timeout_timer.function = kw_i2c_timeout; |
| 506 | host->timeout_timer.data = (unsigned long)host; |
| 507 | |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 508 | psteps = get_property(np, "AAPL,address-step", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 509 | steps = psteps ? (*psteps) : 0x10; |
| 510 | for (host->bsteps = 0; (steps & 0x01) == 0; host->bsteps++) |
| 511 | steps >>= 1; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 512 | /* Select interface rate */ |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 513 | host->speed = KW_I2C_MODE_25KHZ; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 514 | prate = get_property(np, "AAPL,i2c-rate", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 515 | if (prate) switch(*prate) { |
| 516 | case 100: |
| 517 | host->speed = KW_I2C_MODE_100KHZ; |
| 518 | break; |
| 519 | case 50: |
| 520 | host->speed = KW_I2C_MODE_50KHZ; |
| 521 | break; |
| 522 | case 25: |
| 523 | host->speed = KW_I2C_MODE_25KHZ; |
| 524 | break; |
| 525 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 526 | host->irq = irq_of_parse_and_map(np, 0); |
| 527 | if (host->irq == NO_IRQ) |
| 528 | printk(KERN_WARNING |
| 529 | "low_i2c: Failed to map interrupt for %s\n", |
| 530 | np->full_name); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 531 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 532 | host->base = ioremap((*addrp), 0x1000); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 533 | if (host->base == NULL) { |
| 534 | printk(KERN_ERR "low_i2c: Can't map registers for %s\n", |
| 535 | np->full_name); |
| 536 | kfree(host); |
| 537 | return NULL; |
| 538 | } |
| 539 | |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 540 | /* Make sure IRQ is disabled */ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 541 | kw_write_reg(reg_ier, 0); |
| 542 | |
| 543 | /* Request chip interrupt */ |
Benjamin Herrenschmidt | 60162e4 | 2006-04-18 14:11:53 +1000 | [diff] [blame] | 544 | if (request_irq(host->irq, kw_i2c_irq, 0, "keywest i2c", host)) |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 545 | host->irq = NO_IRQ; |
| 546 | |
| 547 | printk(KERN_INFO "KeyWest i2c @0x%08x irq %d %s\n", |
| 548 | *addrp, host->irq, np->full_name); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 549 | |
| 550 | return host; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 551 | } |
| 552 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 553 | |
| 554 | static void __init kw_i2c_add(struct pmac_i2c_host_kw *host, |
| 555 | struct device_node *controller, |
| 556 | struct device_node *busnode, |
| 557 | int channel) |
| 558 | { |
| 559 | struct pmac_i2c_bus *bus; |
| 560 | |
| 561 | bus = kzalloc(sizeof(struct pmac_i2c_bus), GFP_KERNEL); |
| 562 | if (bus == NULL) |
| 563 | return; |
| 564 | |
| 565 | bus->controller = of_node_get(controller); |
| 566 | bus->busnode = of_node_get(busnode); |
| 567 | bus->type = pmac_i2c_bus_keywest; |
| 568 | bus->hostdata = host; |
| 569 | bus->channel = channel; |
| 570 | bus->mode = pmac_i2c_mode_std; |
| 571 | bus->open = kw_i2c_open; |
| 572 | bus->close = kw_i2c_close; |
| 573 | bus->xfer = kw_i2c_xfer; |
| 574 | init_MUTEX(&bus->sem); |
| 575 | if (controller == busnode) |
| 576 | bus->flags = pmac_i2c_multibus; |
| 577 | list_add(&bus->link, &pmac_i2c_busses); |
| 578 | |
| 579 | printk(KERN_INFO " channel %d bus %s\n", channel, |
| 580 | (controller == busnode) ? "<multibus>" : busnode->full_name); |
| 581 | } |
| 582 | |
| 583 | static void __init kw_i2c_probe(void) |
| 584 | { |
| 585 | struct device_node *np, *child, *parent; |
| 586 | |
| 587 | /* Probe keywest-i2c busses */ |
| 588 | for (np = NULL; |
| 589 | (np = of_find_compatible_node(np, "i2c","keywest-i2c")) != NULL;){ |
| 590 | struct pmac_i2c_host_kw *host; |
| 591 | int multibus, chans, i; |
| 592 | |
| 593 | /* Found one, init a host structure */ |
| 594 | host = kw_i2c_host_init(np); |
| 595 | if (host == NULL) |
| 596 | continue; |
| 597 | |
| 598 | /* Now check if we have a multibus setup (old style) or if we |
| 599 | * have proper bus nodes. Note that the "new" way (proper bus |
| 600 | * nodes) might cause us to not create some busses that are |
| 601 | * kept hidden in the device-tree. In the future, we might |
| 602 | * want to work around that by creating busses without a node |
| 603 | * but not for now |
| 604 | */ |
| 605 | child = of_get_next_child(np, NULL); |
| 606 | multibus = !child || strcmp(child->name, "i2c-bus"); |
| 607 | of_node_put(child); |
| 608 | |
| 609 | /* For a multibus setup, we get the bus count based on the |
| 610 | * parent type |
| 611 | */ |
| 612 | if (multibus) { |
| 613 | parent = of_get_parent(np); |
| 614 | if (parent == NULL) |
| 615 | continue; |
| 616 | chans = parent->name[0] == 'u' ? 2 : 1; |
| 617 | for (i = 0; i < chans; i++) |
| 618 | kw_i2c_add(host, np, np, i); |
| 619 | } else { |
| 620 | for (child = NULL; |
| 621 | (child = of_get_next_child(np, child)) != NULL;) { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 622 | const u32 *reg = get_property(child, |
| 623 | "reg", NULL); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 624 | if (reg == NULL) |
| 625 | continue; |
| 626 | kw_i2c_add(host, np, child, *reg); |
| 627 | } |
| 628 | } |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 633 | /* |
| 634 | * |
| 635 | * PMU implementation |
| 636 | * |
| 637 | */ |
| 638 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 639 | #ifdef CONFIG_ADB_PMU |
| 640 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 641 | /* |
| 642 | * i2c command block to the PMU |
| 643 | */ |
| 644 | struct pmu_i2c_hdr { |
| 645 | u8 bus; |
| 646 | u8 mode; |
| 647 | u8 bus2; |
| 648 | u8 address; |
| 649 | u8 sub_addr; |
| 650 | u8 comb_addr; |
| 651 | u8 count; |
| 652 | u8 data[]; |
| 653 | }; |
| 654 | |
| 655 | static void pmu_i2c_complete(struct adb_request *req) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 656 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 657 | complete(req->arg); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 658 | } |
| 659 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 660 | static int pmu_i2c_xfer(struct pmac_i2c_bus *bus, u8 addrdir, int subsize, |
| 661 | u32 subaddr, u8 *data, int len) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 662 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 663 | struct adb_request *req = bus->hostdata; |
| 664 | struct pmu_i2c_hdr *hdr = (struct pmu_i2c_hdr *)&req->data[1]; |
| 665 | struct completion comp; |
| 666 | int read = addrdir & 1; |
| 667 | int retry; |
| 668 | int rc = 0; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 669 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 670 | /* For now, limit ourselves to 16 bytes transfers */ |
| 671 | if (len > 16) |
| 672 | return -EINVAL; |
| 673 | |
| 674 | init_completion(&comp); |
| 675 | |
| 676 | for (retry = 0; retry < 16; retry++) { |
| 677 | memset(req, 0, sizeof(struct adb_request)); |
| 678 | hdr->bus = bus->channel; |
| 679 | hdr->count = len; |
| 680 | |
| 681 | switch(bus->mode) { |
| 682 | case pmac_i2c_mode_std: |
| 683 | if (subsize != 0) |
| 684 | return -EINVAL; |
| 685 | hdr->address = addrdir; |
| 686 | hdr->mode = PMU_I2C_MODE_SIMPLE; |
| 687 | break; |
| 688 | case pmac_i2c_mode_stdsub: |
| 689 | case pmac_i2c_mode_combined: |
| 690 | if (subsize != 1) |
| 691 | return -EINVAL; |
| 692 | hdr->address = addrdir & 0xfe; |
| 693 | hdr->comb_addr = addrdir; |
| 694 | hdr->sub_addr = subaddr; |
| 695 | if (bus->mode == pmac_i2c_mode_stdsub) |
| 696 | hdr->mode = PMU_I2C_MODE_STDSUB; |
| 697 | else |
| 698 | hdr->mode = PMU_I2C_MODE_COMBINED; |
| 699 | break; |
| 700 | default: |
| 701 | return -EINVAL; |
| 702 | } |
| 703 | |
| 704 | INIT_COMPLETION(comp); |
| 705 | req->data[0] = PMU_I2C_CMD; |
| 706 | req->reply[0] = 0xff; |
| 707 | req->nbytes = sizeof(struct pmu_i2c_hdr) + 1; |
| 708 | req->done = pmu_i2c_complete; |
| 709 | req->arg = ∁ |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 710 | if (!read && len) { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 711 | memcpy(hdr->data, data, len); |
| 712 | req->nbytes += len; |
| 713 | } |
| 714 | rc = pmu_queue_request(req); |
| 715 | if (rc) |
| 716 | return rc; |
| 717 | wait_for_completion(&comp); |
| 718 | if (req->reply[0] == PMU_I2C_STATUS_OK) |
| 719 | break; |
| 720 | msleep(15); |
| 721 | } |
| 722 | if (req->reply[0] != PMU_I2C_STATUS_OK) |
| 723 | return -EIO; |
| 724 | |
| 725 | for (retry = 0; retry < 16; retry++) { |
| 726 | memset(req, 0, sizeof(struct adb_request)); |
| 727 | |
| 728 | /* I know that looks like a lot, slow as hell, but darwin |
| 729 | * does it so let's be on the safe side for now |
| 730 | */ |
| 731 | msleep(15); |
| 732 | |
| 733 | hdr->bus = PMU_I2C_BUS_STATUS; |
| 734 | |
| 735 | INIT_COMPLETION(comp); |
| 736 | req->data[0] = PMU_I2C_CMD; |
| 737 | req->reply[0] = 0xff; |
| 738 | req->nbytes = 2; |
| 739 | req->done = pmu_i2c_complete; |
| 740 | req->arg = ∁ |
| 741 | rc = pmu_queue_request(req); |
| 742 | if (rc) |
| 743 | return rc; |
| 744 | wait_for_completion(&comp); |
| 745 | |
| 746 | if (req->reply[0] == PMU_I2C_STATUS_OK && !read) |
| 747 | return 0; |
| 748 | if (req->reply[0] == PMU_I2C_STATUS_DATAREAD && read) { |
| 749 | int rlen = req->reply_len - 1; |
| 750 | |
| 751 | if (rlen != len) { |
| 752 | printk(KERN_WARNING "low_i2c: PMU returned %d" |
| 753 | " bytes, expected %d !\n", rlen, len); |
| 754 | return -EIO; |
| 755 | } |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 756 | if (len) |
| 757 | memcpy(data, &req->reply[1], len); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 758 | return 0; |
| 759 | } |
| 760 | } |
| 761 | return -EIO; |
| 762 | } |
| 763 | |
| 764 | static void __init pmu_i2c_probe(void) |
| 765 | { |
| 766 | struct pmac_i2c_bus *bus; |
| 767 | struct device_node *busnode; |
| 768 | int channel, sz; |
| 769 | |
| 770 | if (!pmu_present()) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 771 | return; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 772 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 773 | /* There might or might not be a "pmu-i2c" node, we use that |
| 774 | * or via-pmu itself, whatever we find. I haven't seen a machine |
| 775 | * with separate bus nodes, so we assume a multibus setup |
| 776 | */ |
| 777 | busnode = of_find_node_by_name(NULL, "pmu-i2c"); |
| 778 | if (busnode == NULL) |
| 779 | busnode = of_find_node_by_name(NULL, "via-pmu"); |
| 780 | if (busnode == NULL) |
| 781 | return; |
| 782 | |
| 783 | printk(KERN_INFO "PMU i2c %s\n", busnode->full_name); |
| 784 | |
| 785 | /* |
| 786 | * We add bus 1 and 2 only for now, bus 0 is "special" |
| 787 | */ |
| 788 | for (channel = 1; channel <= 2; channel++) { |
| 789 | sz = sizeof(struct pmac_i2c_bus) + sizeof(struct adb_request); |
| 790 | bus = kzalloc(sz, GFP_KERNEL); |
| 791 | if (bus == NULL) |
| 792 | return; |
| 793 | |
| 794 | bus->controller = busnode; |
| 795 | bus->busnode = busnode; |
| 796 | bus->type = pmac_i2c_bus_pmu; |
| 797 | bus->channel = channel; |
| 798 | bus->mode = pmac_i2c_mode_std; |
| 799 | bus->hostdata = bus + 1; |
| 800 | bus->xfer = pmu_i2c_xfer; |
| 801 | init_MUTEX(&bus->sem); |
| 802 | bus->flags = pmac_i2c_multibus; |
| 803 | list_add(&bus->link, &pmac_i2c_busses); |
| 804 | |
| 805 | printk(KERN_INFO " channel %d bus <multibus>\n", channel); |
| 806 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | #endif /* CONFIG_ADB_PMU */ |
| 810 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * |
| 814 | * SMU implementation |
| 815 | * |
| 816 | */ |
| 817 | |
| 818 | #ifdef CONFIG_PMAC_SMU |
| 819 | |
| 820 | static void smu_i2c_complete(struct smu_i2c_cmd *cmd, void *misc) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 821 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 822 | complete(misc); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 823 | } |
| 824 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 825 | static int smu_i2c_xfer(struct pmac_i2c_bus *bus, u8 addrdir, int subsize, |
| 826 | u32 subaddr, u8 *data, int len) |
| 827 | { |
| 828 | struct smu_i2c_cmd *cmd = bus->hostdata; |
| 829 | struct completion comp; |
| 830 | int read = addrdir & 1; |
| 831 | int rc = 0; |
| 832 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 833 | if ((read && len > SMU_I2C_READ_MAX) || |
| 834 | ((!read) && len > SMU_I2C_WRITE_MAX)) |
| 835 | return -EINVAL; |
| 836 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 837 | memset(cmd, 0, sizeof(struct smu_i2c_cmd)); |
| 838 | cmd->info.bus = bus->channel; |
| 839 | cmd->info.devaddr = addrdir; |
| 840 | cmd->info.datalen = len; |
| 841 | |
| 842 | switch(bus->mode) { |
| 843 | case pmac_i2c_mode_std: |
| 844 | if (subsize != 0) |
| 845 | return -EINVAL; |
| 846 | cmd->info.type = SMU_I2C_TRANSFER_SIMPLE; |
| 847 | break; |
| 848 | case pmac_i2c_mode_stdsub: |
| 849 | case pmac_i2c_mode_combined: |
| 850 | if (subsize > 3 || subsize < 1) |
| 851 | return -EINVAL; |
| 852 | cmd->info.sublen = subsize; |
| 853 | /* that's big-endian only but heh ! */ |
| 854 | memcpy(&cmd->info.subaddr, ((char *)&subaddr) + (4 - subsize), |
| 855 | subsize); |
| 856 | if (bus->mode == pmac_i2c_mode_stdsub) |
| 857 | cmd->info.type = SMU_I2C_TRANSFER_STDSUB; |
| 858 | else |
| 859 | cmd->info.type = SMU_I2C_TRANSFER_COMBINED; |
| 860 | break; |
| 861 | default: |
| 862 | return -EINVAL; |
| 863 | } |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 864 | if (!read && len) |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 865 | memcpy(cmd->info.data, data, len); |
| 866 | |
| 867 | init_completion(&comp); |
| 868 | cmd->done = smu_i2c_complete; |
| 869 | cmd->misc = ∁ |
| 870 | rc = smu_queue_i2c(cmd); |
| 871 | if (rc < 0) |
| 872 | return rc; |
| 873 | wait_for_completion(&comp); |
| 874 | rc = cmd->status; |
| 875 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 876 | if (read && len) |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 877 | memcpy(data, cmd->info.data, len); |
| 878 | return rc < 0 ? rc : 0; |
| 879 | } |
| 880 | |
| 881 | static void __init smu_i2c_probe(void) |
| 882 | { |
| 883 | struct device_node *controller, *busnode; |
| 884 | struct pmac_i2c_bus *bus; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 885 | const u32 *reg; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 886 | int sz; |
| 887 | |
| 888 | if (!smu_present()) |
| 889 | return; |
| 890 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 891 | controller = of_find_node_by_name(NULL, "smu-i2c-control"); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 892 | if (controller == NULL) |
| 893 | controller = of_find_node_by_name(NULL, "smu"); |
| 894 | if (controller == NULL) |
| 895 | return; |
| 896 | |
| 897 | printk(KERN_INFO "SMU i2c %s\n", controller->full_name); |
| 898 | |
| 899 | /* Look for childs, note that they might not be of the right |
| 900 | * type as older device trees mix i2c busses and other thigns |
| 901 | * at the same level |
| 902 | */ |
| 903 | for (busnode = NULL; |
| 904 | (busnode = of_get_next_child(controller, busnode)) != NULL;) { |
| 905 | if (strcmp(busnode->type, "i2c") && |
| 906 | strcmp(busnode->type, "i2c-bus")) |
| 907 | continue; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 908 | reg = get_property(busnode, "reg", NULL); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 909 | if (reg == NULL) |
| 910 | continue; |
| 911 | |
| 912 | sz = sizeof(struct pmac_i2c_bus) + sizeof(struct smu_i2c_cmd); |
| 913 | bus = kzalloc(sz, GFP_KERNEL); |
| 914 | if (bus == NULL) |
| 915 | return; |
| 916 | |
| 917 | bus->controller = controller; |
| 918 | bus->busnode = of_node_get(busnode); |
| 919 | bus->type = pmac_i2c_bus_smu; |
| 920 | bus->channel = *reg; |
| 921 | bus->mode = pmac_i2c_mode_std; |
| 922 | bus->hostdata = bus + 1; |
| 923 | bus->xfer = smu_i2c_xfer; |
| 924 | init_MUTEX(&bus->sem); |
| 925 | bus->flags = 0; |
| 926 | list_add(&bus->link, &pmac_i2c_busses); |
| 927 | |
| 928 | printk(KERN_INFO " channel %x bus %s\n", |
| 929 | bus->channel, busnode->full_name); |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | #endif /* CONFIG_PMAC_SMU */ |
| 934 | |
| 935 | /* |
| 936 | * |
| 937 | * Core code |
| 938 | * |
| 939 | */ |
| 940 | |
| 941 | |
| 942 | struct pmac_i2c_bus *pmac_i2c_find_bus(struct device_node *node) |
| 943 | { |
| 944 | struct device_node *p = of_node_get(node); |
| 945 | struct device_node *prev = NULL; |
| 946 | struct pmac_i2c_bus *bus; |
| 947 | |
| 948 | while(p) { |
| 949 | list_for_each_entry(bus, &pmac_i2c_busses, link) { |
| 950 | if (p == bus->busnode) { |
| 951 | if (prev && bus->flags & pmac_i2c_multibus) { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 952 | const u32 *reg; |
| 953 | reg = get_property(prev, "reg", NULL); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 954 | if (!reg) |
| 955 | continue; |
| 956 | if (((*reg) >> 8) != bus->channel) |
| 957 | continue; |
| 958 | } |
| 959 | of_node_put(p); |
| 960 | of_node_put(prev); |
| 961 | return bus; |
| 962 | } |
| 963 | } |
| 964 | of_node_put(prev); |
| 965 | prev = p; |
| 966 | p = of_get_parent(p); |
| 967 | } |
| 968 | return NULL; |
| 969 | } |
| 970 | EXPORT_SYMBOL_GPL(pmac_i2c_find_bus); |
| 971 | |
| 972 | u8 pmac_i2c_get_dev_addr(struct device_node *device) |
| 973 | { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame^] | 974 | const u32 *reg = get_property(device, "reg", NULL); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 975 | |
| 976 | if (reg == NULL) |
| 977 | return 0; |
| 978 | |
| 979 | return (*reg) & 0xff; |
| 980 | } |
| 981 | EXPORT_SYMBOL_GPL(pmac_i2c_get_dev_addr); |
| 982 | |
| 983 | struct device_node *pmac_i2c_get_controller(struct pmac_i2c_bus *bus) |
| 984 | { |
| 985 | return bus->controller; |
| 986 | } |
| 987 | EXPORT_SYMBOL_GPL(pmac_i2c_get_controller); |
| 988 | |
| 989 | struct device_node *pmac_i2c_get_bus_node(struct pmac_i2c_bus *bus) |
| 990 | { |
| 991 | return bus->busnode; |
| 992 | } |
| 993 | EXPORT_SYMBOL_GPL(pmac_i2c_get_bus_node); |
| 994 | |
| 995 | int pmac_i2c_get_type(struct pmac_i2c_bus *bus) |
| 996 | { |
| 997 | return bus->type; |
| 998 | } |
| 999 | EXPORT_SYMBOL_GPL(pmac_i2c_get_type); |
| 1000 | |
| 1001 | int pmac_i2c_get_flags(struct pmac_i2c_bus *bus) |
| 1002 | { |
| 1003 | return bus->flags; |
| 1004 | } |
| 1005 | EXPORT_SYMBOL_GPL(pmac_i2c_get_flags); |
| 1006 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1007 | int pmac_i2c_get_channel(struct pmac_i2c_bus *bus) |
| 1008 | { |
| 1009 | return bus->channel; |
| 1010 | } |
| 1011 | EXPORT_SYMBOL_GPL(pmac_i2c_get_channel); |
| 1012 | |
| 1013 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1014 | void pmac_i2c_attach_adapter(struct pmac_i2c_bus *bus, |
| 1015 | struct i2c_adapter *adapter) |
| 1016 | { |
| 1017 | WARN_ON(bus->adapter != NULL); |
| 1018 | bus->adapter = adapter; |
| 1019 | } |
| 1020 | EXPORT_SYMBOL_GPL(pmac_i2c_attach_adapter); |
| 1021 | |
| 1022 | void pmac_i2c_detach_adapter(struct pmac_i2c_bus *bus, |
| 1023 | struct i2c_adapter *adapter) |
| 1024 | { |
| 1025 | WARN_ON(bus->adapter != adapter); |
| 1026 | bus->adapter = NULL; |
| 1027 | } |
| 1028 | EXPORT_SYMBOL_GPL(pmac_i2c_detach_adapter); |
| 1029 | |
| 1030 | struct i2c_adapter *pmac_i2c_get_adapter(struct pmac_i2c_bus *bus) |
| 1031 | { |
| 1032 | return bus->adapter; |
| 1033 | } |
| 1034 | EXPORT_SYMBOL_GPL(pmac_i2c_get_adapter); |
| 1035 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1036 | struct pmac_i2c_bus *pmac_i2c_adapter_to_bus(struct i2c_adapter *adapter) |
| 1037 | { |
| 1038 | struct pmac_i2c_bus *bus; |
| 1039 | |
| 1040 | list_for_each_entry(bus, &pmac_i2c_busses, link) |
| 1041 | if (bus->adapter == adapter) |
| 1042 | return bus; |
| 1043 | return NULL; |
| 1044 | } |
| 1045 | EXPORT_SYMBOL_GPL(pmac_i2c_adapter_to_bus); |
| 1046 | |
Al Viro | 1d0bd71 | 2006-02-01 07:25:14 -0500 | [diff] [blame] | 1047 | int pmac_i2c_match_adapter(struct device_node *dev, struct i2c_adapter *adapter) |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1048 | { |
| 1049 | struct pmac_i2c_bus *bus = pmac_i2c_find_bus(dev); |
| 1050 | |
| 1051 | if (bus == NULL) |
| 1052 | return 0; |
| 1053 | return (bus->adapter == adapter); |
| 1054 | } |
| 1055 | EXPORT_SYMBOL_GPL(pmac_i2c_match_adapter); |
| 1056 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1057 | int pmac_low_i2c_lock(struct device_node *np) |
| 1058 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1059 | struct pmac_i2c_bus *bus, *found = NULL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1060 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1061 | list_for_each_entry(bus, &pmac_i2c_busses, link) { |
| 1062 | if (np == bus->controller) { |
| 1063 | found = bus; |
| 1064 | break; |
| 1065 | } |
| 1066 | } |
| 1067 | if (!found) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1068 | return -ENODEV; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1069 | return pmac_i2c_open(bus, 0); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1070 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1071 | EXPORT_SYMBOL_GPL(pmac_low_i2c_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1072 | |
| 1073 | int pmac_low_i2c_unlock(struct device_node *np) |
| 1074 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1075 | struct pmac_i2c_bus *bus, *found = NULL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1076 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1077 | list_for_each_entry(bus, &pmac_i2c_busses, link) { |
| 1078 | if (np == bus->controller) { |
| 1079 | found = bus; |
| 1080 | break; |
| 1081 | } |
| 1082 | } |
| 1083 | if (!found) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1084 | return -ENODEV; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1085 | pmac_i2c_close(bus); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1086 | return 0; |
| 1087 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1088 | EXPORT_SYMBOL_GPL(pmac_low_i2c_unlock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1089 | |
| 1090 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1091 | int pmac_i2c_open(struct pmac_i2c_bus *bus, int polled) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1092 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1093 | int rc; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1094 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1095 | down(&bus->sem); |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1096 | bus->polled = polled || pmac_i2c_force_poll; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1097 | bus->opened = 1; |
| 1098 | bus->mode = pmac_i2c_mode_std; |
| 1099 | if (bus->open && (rc = bus->open(bus)) != 0) { |
| 1100 | bus->opened = 0; |
| 1101 | up(&bus->sem); |
| 1102 | return rc; |
| 1103 | } |
| 1104 | return 0; |
| 1105 | } |
| 1106 | EXPORT_SYMBOL_GPL(pmac_i2c_open); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1107 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1108 | void pmac_i2c_close(struct pmac_i2c_bus *bus) |
| 1109 | { |
| 1110 | WARN_ON(!bus->opened); |
| 1111 | if (bus->close) |
| 1112 | bus->close(bus); |
| 1113 | bus->opened = 0; |
| 1114 | up(&bus->sem); |
| 1115 | } |
| 1116 | EXPORT_SYMBOL_GPL(pmac_i2c_close); |
| 1117 | |
| 1118 | int pmac_i2c_setmode(struct pmac_i2c_bus *bus, int mode) |
| 1119 | { |
| 1120 | WARN_ON(!bus->opened); |
| 1121 | |
| 1122 | /* Report me if you see the error below as there might be a new |
| 1123 | * "combined4" mode that I need to implement for the SMU bus |
| 1124 | */ |
| 1125 | if (mode < pmac_i2c_mode_dumb || mode > pmac_i2c_mode_combined) { |
| 1126 | printk(KERN_ERR "low_i2c: Invalid mode %d requested on" |
| 1127 | " bus %s !\n", mode, bus->busnode->full_name); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1128 | return -EINVAL; |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1129 | } |
| 1130 | bus->mode = mode; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1131 | |
| 1132 | return 0; |
| 1133 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1134 | EXPORT_SYMBOL_GPL(pmac_i2c_setmode); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1135 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1136 | int pmac_i2c_xfer(struct pmac_i2c_bus *bus, u8 addrdir, int subsize, |
| 1137 | u32 subaddr, u8 *data, int len) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1138 | { |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1139 | int rc; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1140 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1141 | WARN_ON(!bus->opened); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1142 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1143 | DBG("xfer() chan=%d, addrdir=0x%x, mode=%d, subsize=%d, subaddr=0x%x," |
| 1144 | " %d bytes, bus %s\n", bus->channel, addrdir, bus->mode, subsize, |
| 1145 | subaddr, len, bus->busnode->full_name); |
| 1146 | |
| 1147 | rc = bus->xfer(bus, addrdir, subsize, subaddr, data, len); |
| 1148 | |
| 1149 | #ifdef DEBUG |
| 1150 | if (rc) |
| 1151 | DBG("xfer error %d\n", rc); |
| 1152 | #endif |
| 1153 | return rc; |
| 1154 | } |
| 1155 | EXPORT_SYMBOL_GPL(pmac_i2c_xfer); |
| 1156 | |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1157 | /* some quirks for platform function decoding */ |
| 1158 | enum { |
| 1159 | pmac_i2c_quirk_invmask = 0x00000001u, |
Benjamin Herrenschmidt | 5a47d74 | 2006-05-30 21:26:51 -0700 | [diff] [blame] | 1160 | pmac_i2c_quirk_skip = 0x00000002u, |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1161 | }; |
| 1162 | |
| 1163 | static void pmac_i2c_devscan(void (*callback)(struct device_node *dev, |
| 1164 | int quirks)) |
| 1165 | { |
| 1166 | struct pmac_i2c_bus *bus; |
| 1167 | struct device_node *np; |
| 1168 | static struct whitelist_ent { |
| 1169 | char *name; |
| 1170 | char *compatible; |
| 1171 | int quirks; |
| 1172 | } whitelist[] = { |
| 1173 | /* XXX Study device-tree's & apple drivers are get the quirks |
| 1174 | * right ! |
| 1175 | */ |
Benjamin Herrenschmidt | 5a47d74 | 2006-05-30 21:26:51 -0700 | [diff] [blame] | 1176 | /* Workaround: It seems that running the clockspreading |
| 1177 | * properties on the eMac will cause lockups during boot. |
| 1178 | * The machine seems to work fine without that. So for now, |
| 1179 | * let's make sure i2c-hwclock doesn't match about "imic" |
| 1180 | * clocks and we'll figure out if we really need to do |
| 1181 | * something special about those later. |
| 1182 | */ |
| 1183 | { "i2c-hwclock", "imic5002", pmac_i2c_quirk_skip }, |
| 1184 | { "i2c-hwclock", "imic5003", pmac_i2c_quirk_skip }, |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1185 | { "i2c-hwclock", NULL, pmac_i2c_quirk_invmask }, |
| 1186 | { "i2c-cpu-voltage", NULL, 0}, |
| 1187 | { "temp-monitor", NULL, 0 }, |
| 1188 | { "supply-monitor", NULL, 0 }, |
| 1189 | { NULL, NULL, 0 }, |
| 1190 | }; |
| 1191 | |
| 1192 | /* Only some devices need to have platform functions instanciated |
| 1193 | * here. For now, we have a table. Others, like 9554 i2c GPIOs used |
| 1194 | * on Xserve, if we ever do a driver for them, will use their own |
| 1195 | * platform function instance |
| 1196 | */ |
| 1197 | list_for_each_entry(bus, &pmac_i2c_busses, link) { |
| 1198 | for (np = NULL; |
| 1199 | (np = of_get_next_child(bus->busnode, np)) != NULL;) { |
| 1200 | struct whitelist_ent *p; |
| 1201 | /* If multibus, check if device is on that bus */ |
| 1202 | if (bus->flags & pmac_i2c_multibus) |
| 1203 | if (bus != pmac_i2c_find_bus(np)) |
| 1204 | continue; |
| 1205 | for (p = whitelist; p->name != NULL; p++) { |
| 1206 | if (strcmp(np->name, p->name)) |
| 1207 | continue; |
| 1208 | if (p->compatible && |
| 1209 | !device_is_compatible(np, p->compatible)) |
| 1210 | continue; |
Benjamin Herrenschmidt | 5a47d74 | 2006-05-30 21:26:51 -0700 | [diff] [blame] | 1211 | if (p->quirks & pmac_i2c_quirk_skip) |
| 1212 | break; |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1213 | callback(np, p->quirks); |
| 1214 | break; |
| 1215 | } |
| 1216 | } |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | #define MAX_I2C_DATA 64 |
| 1221 | |
| 1222 | struct pmac_i2c_pf_inst |
| 1223 | { |
| 1224 | struct pmac_i2c_bus *bus; |
| 1225 | u8 addr; |
| 1226 | u8 buffer[MAX_I2C_DATA]; |
| 1227 | u8 scratch[MAX_I2C_DATA]; |
| 1228 | int bytes; |
| 1229 | int quirks; |
| 1230 | }; |
| 1231 | |
| 1232 | static void* pmac_i2c_do_begin(struct pmf_function *func, struct pmf_args *args) |
| 1233 | { |
| 1234 | struct pmac_i2c_pf_inst *inst; |
| 1235 | struct pmac_i2c_bus *bus; |
| 1236 | |
| 1237 | bus = pmac_i2c_find_bus(func->node); |
| 1238 | if (bus == NULL) { |
| 1239 | printk(KERN_ERR "low_i2c: Can't find bus for %s (pfunc)\n", |
| 1240 | func->node->full_name); |
| 1241 | return NULL; |
| 1242 | } |
| 1243 | if (pmac_i2c_open(bus, 0)) { |
| 1244 | printk(KERN_ERR "low_i2c: Can't open i2c bus for %s (pfunc)\n", |
| 1245 | func->node->full_name); |
| 1246 | return NULL; |
| 1247 | } |
| 1248 | |
| 1249 | /* XXX might need GFP_ATOMIC when called during the suspend process, |
| 1250 | * but then, there are already lots of issues with suspending when |
| 1251 | * near OOM that need to be resolved, the allocator itself should |
| 1252 | * probably make GFP_NOIO implicit during suspend |
| 1253 | */ |
| 1254 | inst = kzalloc(sizeof(struct pmac_i2c_pf_inst), GFP_KERNEL); |
| 1255 | if (inst == NULL) { |
| 1256 | pmac_i2c_close(bus); |
| 1257 | return NULL; |
| 1258 | } |
| 1259 | inst->bus = bus; |
| 1260 | inst->addr = pmac_i2c_get_dev_addr(func->node); |
| 1261 | inst->quirks = (int)(long)func->driver_data; |
| 1262 | return inst; |
| 1263 | } |
| 1264 | |
| 1265 | static void pmac_i2c_do_end(struct pmf_function *func, void *instdata) |
| 1266 | { |
| 1267 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1268 | |
| 1269 | if (inst == NULL) |
| 1270 | return; |
| 1271 | pmac_i2c_close(inst->bus); |
| 1272 | if (inst) |
| 1273 | kfree(inst); |
| 1274 | } |
| 1275 | |
| 1276 | static int pmac_i2c_do_read(PMF_STD_ARGS, u32 len) |
| 1277 | { |
| 1278 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1279 | |
| 1280 | inst->bytes = len; |
| 1281 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_read, 0, 0, |
| 1282 | inst->buffer, len); |
| 1283 | } |
| 1284 | |
| 1285 | static int pmac_i2c_do_write(PMF_STD_ARGS, u32 len, const u8 *data) |
| 1286 | { |
| 1287 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1288 | |
| 1289 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_write, 0, 0, |
| 1290 | (u8 *)data, len); |
| 1291 | } |
| 1292 | |
| 1293 | /* This function is used to do the masking & OR'ing for the "rmw" type |
| 1294 | * callbacks. Ze should apply the mask and OR in the values in the |
| 1295 | * buffer before writing back. The problem is that it seems that |
| 1296 | * various darwin drivers implement the mask/or differently, thus |
| 1297 | * we need to check the quirks first |
| 1298 | */ |
| 1299 | static void pmac_i2c_do_apply_rmw(struct pmac_i2c_pf_inst *inst, |
| 1300 | u32 len, const u8 *mask, const u8 *val) |
| 1301 | { |
| 1302 | int i; |
| 1303 | |
| 1304 | if (inst->quirks & pmac_i2c_quirk_invmask) { |
| 1305 | for (i = 0; i < len; i ++) |
| 1306 | inst->scratch[i] = (inst->buffer[i] & mask[i]) | val[i]; |
| 1307 | } else { |
| 1308 | for (i = 0; i < len; i ++) |
| 1309 | inst->scratch[i] = (inst->buffer[i] & ~mask[i]) |
| 1310 | | (val[i] & mask[i]); |
| 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | static int pmac_i2c_do_rmw(PMF_STD_ARGS, u32 masklen, u32 valuelen, |
| 1315 | u32 totallen, const u8 *maskdata, |
| 1316 | const u8 *valuedata) |
| 1317 | { |
| 1318 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1319 | |
| 1320 | if (masklen > inst->bytes || valuelen > inst->bytes || |
| 1321 | totallen > inst->bytes || valuelen > masklen) |
| 1322 | return -EINVAL; |
| 1323 | |
| 1324 | pmac_i2c_do_apply_rmw(inst, masklen, maskdata, valuedata); |
| 1325 | |
| 1326 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_write, 0, 0, |
| 1327 | inst->scratch, totallen); |
| 1328 | } |
| 1329 | |
| 1330 | static int pmac_i2c_do_read_sub(PMF_STD_ARGS, u8 subaddr, u32 len) |
| 1331 | { |
| 1332 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1333 | |
| 1334 | inst->bytes = len; |
| 1335 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_read, 1, subaddr, |
| 1336 | inst->buffer, len); |
| 1337 | } |
| 1338 | |
| 1339 | static int pmac_i2c_do_write_sub(PMF_STD_ARGS, u8 subaddr, u32 len, |
| 1340 | const u8 *data) |
| 1341 | { |
| 1342 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1343 | |
| 1344 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_write, 1, |
| 1345 | subaddr, (u8 *)data, len); |
| 1346 | } |
| 1347 | |
| 1348 | static int pmac_i2c_do_set_mode(PMF_STD_ARGS, int mode) |
| 1349 | { |
| 1350 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1351 | |
| 1352 | return pmac_i2c_setmode(inst->bus, mode); |
| 1353 | } |
| 1354 | |
| 1355 | static int pmac_i2c_do_rmw_sub(PMF_STD_ARGS, u8 subaddr, u32 masklen, |
| 1356 | u32 valuelen, u32 totallen, const u8 *maskdata, |
| 1357 | const u8 *valuedata) |
| 1358 | { |
| 1359 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1360 | |
| 1361 | if (masklen > inst->bytes || valuelen > inst->bytes || |
| 1362 | totallen > inst->bytes || valuelen > masklen) |
| 1363 | return -EINVAL; |
| 1364 | |
| 1365 | pmac_i2c_do_apply_rmw(inst, masklen, maskdata, valuedata); |
| 1366 | |
| 1367 | return pmac_i2c_xfer(inst->bus, inst->addr | pmac_i2c_write, 1, |
| 1368 | subaddr, inst->scratch, totallen); |
| 1369 | } |
| 1370 | |
| 1371 | static int pmac_i2c_do_mask_and_comp(PMF_STD_ARGS, u32 len, |
| 1372 | const u8 *maskdata, |
| 1373 | const u8 *valuedata) |
| 1374 | { |
| 1375 | struct pmac_i2c_pf_inst *inst = instdata; |
| 1376 | int i, match; |
| 1377 | |
| 1378 | /* Get return value pointer, it's assumed to be a u32 */ |
| 1379 | if (!args || !args->count || !args->u[0].p) |
| 1380 | return -EINVAL; |
| 1381 | |
| 1382 | /* Check buffer */ |
| 1383 | if (len > inst->bytes) |
| 1384 | return -EINVAL; |
| 1385 | |
| 1386 | for (i = 0, match = 1; match && i < len; i ++) |
| 1387 | if ((inst->buffer[i] & maskdata[i]) != valuedata[i]) |
| 1388 | match = 0; |
| 1389 | *args->u[0].p = match; |
| 1390 | return 0; |
| 1391 | } |
| 1392 | |
| 1393 | static int pmac_i2c_do_delay(PMF_STD_ARGS, u32 duration) |
| 1394 | { |
| 1395 | msleep((duration + 999) / 1000); |
| 1396 | return 0; |
| 1397 | } |
| 1398 | |
| 1399 | |
| 1400 | static struct pmf_handlers pmac_i2c_pfunc_handlers = { |
| 1401 | .begin = pmac_i2c_do_begin, |
| 1402 | .end = pmac_i2c_do_end, |
| 1403 | .read_i2c = pmac_i2c_do_read, |
| 1404 | .write_i2c = pmac_i2c_do_write, |
| 1405 | .rmw_i2c = pmac_i2c_do_rmw, |
| 1406 | .read_i2c_sub = pmac_i2c_do_read_sub, |
| 1407 | .write_i2c_sub = pmac_i2c_do_write_sub, |
| 1408 | .rmw_i2c_sub = pmac_i2c_do_rmw_sub, |
| 1409 | .set_i2c_mode = pmac_i2c_do_set_mode, |
| 1410 | .mask_and_compare = pmac_i2c_do_mask_and_comp, |
| 1411 | .delay = pmac_i2c_do_delay, |
| 1412 | }; |
| 1413 | |
| 1414 | static void __init pmac_i2c_dev_create(struct device_node *np, int quirks) |
| 1415 | { |
| 1416 | DBG("dev_create(%s)\n", np->full_name); |
| 1417 | |
| 1418 | pmf_register_driver(np, &pmac_i2c_pfunc_handlers, |
| 1419 | (void *)(long)quirks); |
| 1420 | } |
| 1421 | |
| 1422 | static void __init pmac_i2c_dev_init(struct device_node *np, int quirks) |
| 1423 | { |
| 1424 | DBG("dev_create(%s)\n", np->full_name); |
| 1425 | |
| 1426 | pmf_do_functions(np, NULL, 0, PMF_FLAGS_ON_INIT, NULL); |
| 1427 | } |
| 1428 | |
| 1429 | static void pmac_i2c_dev_suspend(struct device_node *np, int quirks) |
| 1430 | { |
| 1431 | DBG("dev_suspend(%s)\n", np->full_name); |
| 1432 | pmf_do_functions(np, NULL, 0, PMF_FLAGS_ON_SLEEP, NULL); |
| 1433 | } |
| 1434 | |
| 1435 | static void pmac_i2c_dev_resume(struct device_node *np, int quirks) |
| 1436 | { |
| 1437 | DBG("dev_resume(%s)\n", np->full_name); |
| 1438 | pmf_do_functions(np, NULL, 0, PMF_FLAGS_ON_WAKE, NULL); |
| 1439 | } |
| 1440 | |
| 1441 | void pmac_pfunc_i2c_suspend(void) |
| 1442 | { |
| 1443 | pmac_i2c_devscan(pmac_i2c_dev_suspend); |
| 1444 | } |
| 1445 | |
| 1446 | void pmac_pfunc_i2c_resume(void) |
| 1447 | { |
| 1448 | pmac_i2c_devscan(pmac_i2c_dev_resume); |
| 1449 | } |
| 1450 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1451 | /* |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1452 | * Initialize us: probe all i2c busses on the machine, instantiate |
| 1453 | * busses and platform functions as needed. |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1454 | */ |
| 1455 | /* This is non-static as it might be called early by smp code */ |
| 1456 | int __init pmac_i2c_init(void) |
| 1457 | { |
| 1458 | static int i2c_inited; |
| 1459 | |
| 1460 | if (i2c_inited) |
| 1461 | return 0; |
| 1462 | i2c_inited = 1; |
| 1463 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 1464 | if (!machine_is(powermac)) |
| 1465 | return 0; |
| 1466 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1467 | /* Probe keywest-i2c busses */ |
| 1468 | kw_i2c_probe(); |
| 1469 | |
| 1470 | #ifdef CONFIG_ADB_PMU |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1471 | /* Probe PMU i2c busses */ |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1472 | pmu_i2c_probe(); |
| 1473 | #endif |
| 1474 | |
| 1475 | #ifdef CONFIG_PMAC_SMU |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1476 | /* Probe SMU i2c busses */ |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1477 | smu_i2c_probe(); |
| 1478 | #endif |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1479 | |
| 1480 | /* Now add plaform functions for some known devices */ |
| 1481 | pmac_i2c_devscan(pmac_i2c_dev_create); |
| 1482 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1483 | return 0; |
| 1484 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 1485 | arch_initcall(pmac_i2c_init); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1486 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1487 | /* Since pmac_i2c_init can be called too early for the platform device |
| 1488 | * registration, we need to do it at a later time. In our case, subsys |
| 1489 | * happens to fit well, though I agree it's a bit of a hack... |
| 1490 | */ |
| 1491 | static int __init pmac_i2c_create_platform_devices(void) |
| 1492 | { |
| 1493 | struct pmac_i2c_bus *bus; |
| 1494 | int i = 0; |
| 1495 | |
| 1496 | /* In the case where we are initialized from smp_init(), we must |
| 1497 | * not use the timer (and thus the irq). It's safe from now on |
| 1498 | * though |
| 1499 | */ |
| 1500 | pmac_i2c_force_poll = 0; |
| 1501 | |
| 1502 | /* Create platform devices */ |
| 1503 | list_for_each_entry(bus, &pmac_i2c_busses, link) { |
| 1504 | bus->platform_dev = |
| 1505 | platform_device_alloc("i2c-powermac", i++); |
| 1506 | if (bus->platform_dev == NULL) |
| 1507 | return -ENOMEM; |
| 1508 | bus->platform_dev->dev.platform_data = bus; |
| 1509 | platform_device_add(bus->platform_dev); |
| 1510 | } |
| 1511 | |
Benjamin Herrenschmidt | 5b9ca52 | 2006-01-07 11:41:02 +1100 | [diff] [blame] | 1512 | /* Now call platform "init" functions */ |
| 1513 | pmac_i2c_devscan(pmac_i2c_dev_init); |
| 1514 | |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 1515 | return 0; |
| 1516 | } |
| 1517 | subsys_initcall(pmac_i2c_create_platform_devices); |