3 * FIXME: Properly make this race free with refcounting etc...
8 #include <linux/init.h>
9 #include <linux/delay.h>
10 #include <linux/kernel.h>
11 #include <linux/spinlock.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
15 #include <asm/semaphore.h>
17 #include <asm/pmac_pfunc.h>
20 #define LOG_PARSE(fmt...)
21 #define LOG_ERROR(fmt...) printk(fmt)
22 #define LOG_BLOB(t,b,c)
26 #define DBG(fmt...) printk(fmt)
32 #define PMF_CMD_LIST 0
33 #define PMF_CMD_WRITE_GPIO 1
34 #define PMF_CMD_READ_GPIO 2
35 #define PMF_CMD_WRITE_REG32 3
36 #define PMF_CMD_READ_REG32 4
37 #define PMF_CMD_WRITE_REG16 5
38 #define PMF_CMD_READ_REG16 6
39 #define PMF_CMD_WRITE_REG8 7
40 #define PMF_CMD_READ_REG8 8
41 #define PMF_CMD_DELAY 9
42 #define PMF_CMD_WAIT_REG32 10
43 #define PMF_CMD_WAIT_REG16 11
44 #define PMF_CMD_WAIT_REG8 12
45 #define PMF_CMD_READ_I2C 13
46 #define PMF_CMD_WRITE_I2C 14
47 #define PMF_CMD_RMW_I2C 15
48 #define PMF_CMD_GEN_I2C 16
49 #define PMF_CMD_SHIFT_BYTES_RIGHT 17
50 #define PMF_CMD_SHIFT_BYTES_LEFT 18
51 #define PMF_CMD_READ_CFG 19
52 #define PMF_CMD_WRITE_CFG 20
53 #define PMF_CMD_RMW_CFG 21
54 #define PMF_CMD_READ_I2C_SUBADDR 22
55 #define PMF_CMD_WRITE_I2C_SUBADDR 23
56 #define PMF_CMD_SET_I2C_MODE 24
57 #define PMF_CMD_RMW_I2C_SUBADDR 25
58 #define PMF_CMD_READ_REG32_MASK_SHR_XOR 26
59 #define PMF_CMD_READ_REG16_MASK_SHR_XOR 27
60 #define PMF_CMD_READ_REG8_MASK_SHR_XOR 28
61 #define PMF_CMD_WRITE_REG32_SHL_MASK 29
62 #define PMF_CMD_WRITE_REG16_SHL_MASK 30
63 #define PMF_CMD_WRITE_REG8_SHL_MASK 31
64 #define PMF_CMD_MASK_AND_COMPARE 32
65 #define PMF_CMD_COUNT 33
67 /* This structure holds the state of the parser while walking through
68 * a function definition
73 struct pmf_function
*func
;
75 struct pmf_args
*args
;
81 static void print_blob(const char *title
, const void *blob
, int bytes
)
85 printk("%02x ", *((u8
*)blob
));
96 static u32
pmf_next32(struct pmf_cmd
*cmd
)
99 if ((cmd
->cmdend
- cmd
->cmdptr
) < 4) {
103 value
= *((u32
*)cmd
->cmdptr
);
108 static const void* pmf_next_blob(struct pmf_cmd
*cmd
, int count
)
111 if ((cmd
->cmdend
- cmd
->cmdptr
) < count
) {
116 cmd
->cmdptr
+= count
;
121 * Individual command parsers
124 #define PMF_PARSE_CALL(name, cmd, handlers, p...) \
128 if (handlers == NULL) \
130 if (handlers->name) \
131 return handlers->name(cmd->func, cmd->instdata, \
137 static int pmf_parser_write_gpio(struct pmf_cmd *cmd, struct pmf_handlers *h)
139 u8 value
= (u8
)pmf_next32(cmd
);
140 u8 mask
= (u8
)pmf_next32(cmd
);
142 LOG_PARSE("pmf: write_gpio(value: %02x, mask: %02x)\n", value
, mask
);
144 PMF_PARSE_CALL(write_gpio
, cmd
, h
, value
, mask
);
147 static int pmf_parser_read_gpio(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
149 u8 mask
= (u8
)pmf_next32(cmd
);
150 int rshift
= (int)pmf_next32(cmd
);
151 u8
xor = (u8
)pmf_next32(cmd
);
153 LOG_PARSE("pmf: read_gpio(mask: %02x, rshift: %d, xor: %02x)\n",
156 PMF_PARSE_CALL(read_gpio
, cmd
, h
, mask
, rshift
, xor);
159 static int pmf_parser_write_reg32(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
161 u32 offset
= pmf_next32(cmd
);
162 u32 value
= pmf_next32(cmd
);
163 u32 mask
= pmf_next32(cmd
);
165 LOG_PARSE("pmf: write_reg32(offset: %08x, value: %08x, mask: %08x)\n",
166 offset
, value
, mask
);
168 PMF_PARSE_CALL(write_reg32
, cmd
, h
, offset
, value
, mask
);
171 static int pmf_parser_read_reg32(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
173 u32 offset
= pmf_next32(cmd
);
175 LOG_PARSE("pmf: read_reg32(offset: %08x)\n", offset
);
177 PMF_PARSE_CALL(read_reg32
, cmd
, h
, offset
);
181 static int pmf_parser_write_reg16(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
183 u32 offset
= pmf_next32(cmd
);
184 u16 value
= (u16
)pmf_next32(cmd
);
185 u16 mask
= (u16
)pmf_next32(cmd
);
187 LOG_PARSE("pmf: write_reg16(offset: %08x, value: %04x, mask: %04x)\n",
188 offset
, value
, mask
);
190 PMF_PARSE_CALL(write_reg16
, cmd
, h
, offset
, value
, mask
);
193 static int pmf_parser_read_reg16(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
195 u32 offset
= pmf_next32(cmd
);
197 LOG_PARSE("pmf: read_reg16(offset: %08x)\n", offset
);
199 PMF_PARSE_CALL(read_reg16
, cmd
, h
, offset
);
203 static int pmf_parser_write_reg8(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
205 u32 offset
= pmf_next32(cmd
);
206 u8 value
= (u16
)pmf_next32(cmd
);
207 u8 mask
= (u16
)pmf_next32(cmd
);
209 LOG_PARSE("pmf: write_reg8(offset: %08x, value: %02x, mask: %02x)\n",
210 offset
, value
, mask
);
212 PMF_PARSE_CALL(write_reg8
, cmd
, h
, offset
, value
, mask
);
215 static int pmf_parser_read_reg8(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
217 u32 offset
= pmf_next32(cmd
);
219 LOG_PARSE("pmf: read_reg8(offset: %08x)\n", offset
);
221 PMF_PARSE_CALL(read_reg8
, cmd
, h
, offset
);
224 static int pmf_parser_delay(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
226 u32 duration
= pmf_next32(cmd
);
228 LOG_PARSE("pmf: delay(duration: %d us)\n", duration
);
230 PMF_PARSE_CALL(delay
, cmd
, h
, duration
);
233 static int pmf_parser_wait_reg32(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
235 u32 offset
= pmf_next32(cmd
);
236 u32 value
= pmf_next32(cmd
);
237 u32 mask
= pmf_next32(cmd
);
239 LOG_PARSE("pmf: wait_reg32(offset: %08x, comp_value: %08x,mask: %08x)\n",
240 offset
, value
, mask
);
242 PMF_PARSE_CALL(wait_reg32
, cmd
, h
, offset
, value
, mask
);
245 static int pmf_parser_wait_reg16(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
247 u32 offset
= pmf_next32(cmd
);
248 u16 value
= (u16
)pmf_next32(cmd
);
249 u16 mask
= (u16
)pmf_next32(cmd
);
251 LOG_PARSE("pmf: wait_reg16(offset: %08x, comp_value: %04x,mask: %04x)\n",
252 offset
, value
, mask
);
254 PMF_PARSE_CALL(wait_reg16
, cmd
, h
, offset
, value
, mask
);
257 static int pmf_parser_wait_reg8(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
259 u32 offset
= pmf_next32(cmd
);
260 u8 value
= (u8
)pmf_next32(cmd
);
261 u8 mask
= (u8
)pmf_next32(cmd
);
263 LOG_PARSE("pmf: wait_reg8(offset: %08x, comp_value: %02x,mask: %02x)\n",
264 offset
, value
, mask
);
266 PMF_PARSE_CALL(wait_reg8
, cmd
, h
, offset
, value
, mask
);
269 static int pmf_parser_read_i2c(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
271 u32 bytes
= pmf_next32(cmd
);
273 LOG_PARSE("pmf: read_i2c(bytes: %ud)\n", bytes
);
275 PMF_PARSE_CALL(read_i2c
, cmd
, h
, bytes
);
278 static int pmf_parser_write_i2c(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
280 u32 bytes
= pmf_next32(cmd
);
281 const void *blob
= pmf_next_blob(cmd
, bytes
);
283 LOG_PARSE("pmf: write_i2c(bytes: %ud) ...\n", bytes
);
284 LOG_BLOB("pmf: data: \n", blob
, bytes
);
286 PMF_PARSE_CALL(write_i2c
, cmd
, h
, bytes
, blob
);
290 static int pmf_parser_rmw_i2c(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
292 u32 maskbytes
= pmf_next32(cmd
);
293 u32 valuesbytes
= pmf_next32(cmd
);
294 u32 totalbytes
= pmf_next32(cmd
);
295 const void *maskblob
= pmf_next_blob(cmd
, maskbytes
);
296 const void *valuesblob
= pmf_next_blob(cmd
, valuesbytes
);
298 LOG_PARSE("pmf: rmw_i2c(maskbytes: %ud, valuebytes: %ud, "
299 "totalbytes: %d) ...\n",
300 maskbytes
, valuesbytes
, totalbytes
);
301 LOG_BLOB("pmf: mask data: \n", maskblob
, maskbytes
);
302 LOG_BLOB("pmf: values data: \n", valuesblob
, valuesbytes
);
304 PMF_PARSE_CALL(rmw_i2c
, cmd
, h
, maskbytes
, valuesbytes
, totalbytes
,
305 maskblob
, valuesblob
);
308 static int pmf_parser_read_cfg(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
310 u32 offset
= pmf_next32(cmd
);
311 u32 bytes
= pmf_next32(cmd
);
313 LOG_PARSE("pmf: read_cfg(offset: %x, bytes: %ud)\n", offset
, bytes
);
315 PMF_PARSE_CALL(read_cfg
, cmd
, h
, offset
, bytes
);
319 static int pmf_parser_write_cfg(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
321 u32 offset
= pmf_next32(cmd
);
322 u32 bytes
= pmf_next32(cmd
);
323 const void *blob
= pmf_next_blob(cmd
, bytes
);
325 LOG_PARSE("pmf: write_cfg(offset: %x, bytes: %ud)\n", offset
, bytes
);
326 LOG_BLOB("pmf: data: \n", blob
, bytes
);
328 PMF_PARSE_CALL(write_cfg
, cmd
, h
, offset
, bytes
, blob
);
331 static int pmf_parser_rmw_cfg(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
333 u32 offset
= pmf_next32(cmd
);
334 u32 maskbytes
= pmf_next32(cmd
);
335 u32 valuesbytes
= pmf_next32(cmd
);
336 u32 totalbytes
= pmf_next32(cmd
);
337 const void *maskblob
= pmf_next_blob(cmd
, maskbytes
);
338 const void *valuesblob
= pmf_next_blob(cmd
, valuesbytes
);
340 LOG_PARSE("pmf: rmw_cfg(maskbytes: %ud, valuebytes: %ud,"
341 " totalbytes: %d) ...\n",
342 maskbytes
, valuesbytes
, totalbytes
);
343 LOG_BLOB("pmf: mask data: \n", maskblob
, maskbytes
);
344 LOG_BLOB("pmf: values data: \n", valuesblob
, valuesbytes
);
346 PMF_PARSE_CALL(rmw_cfg
, cmd
, h
, offset
, maskbytes
, valuesbytes
,
347 totalbytes
, maskblob
, valuesblob
);
351 static int pmf_parser_read_i2c_sub(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
353 u8 subaddr
= (u8
)pmf_next32(cmd
);
354 u32 bytes
= pmf_next32(cmd
);
356 LOG_PARSE("pmf: read_i2c_sub(subaddr: %x, bytes: %ud)\n",
359 PMF_PARSE_CALL(read_i2c_sub
, cmd
, h
, subaddr
, bytes
);
362 static int pmf_parser_write_i2c_sub(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
364 u8 subaddr
= (u8
)pmf_next32(cmd
);
365 u32 bytes
= pmf_next32(cmd
);
366 const void *blob
= pmf_next_blob(cmd
, bytes
);
368 LOG_PARSE("pmf: write_i2c_sub(subaddr: %x, bytes: %ud) ...\n",
370 LOG_BLOB("pmf: data: \n", blob
, bytes
);
372 PMF_PARSE_CALL(write_i2c_sub
, cmd
, h
, subaddr
, bytes
, blob
);
375 static int pmf_parser_set_i2c_mode(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
377 u32 mode
= pmf_next32(cmd
);
379 LOG_PARSE("pmf: set_i2c_mode(mode: %d)\n", mode
);
381 PMF_PARSE_CALL(set_i2c_mode
, cmd
, h
, mode
);
385 static int pmf_parser_rmw_i2c_sub(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
)
387 u8 subaddr
= (u8
)pmf_next32(cmd
);
388 u32 maskbytes
= pmf_next32(cmd
);
389 u32 valuesbytes
= pmf_next32(cmd
);
390 u32 totalbytes
= pmf_next32(cmd
);
391 const void *maskblob
= pmf_next_blob(cmd
, maskbytes
);
392 const void *valuesblob
= pmf_next_blob(cmd
, valuesbytes
);
394 LOG_PARSE("pmf: rmw_i2c_sub(subaddr: %x, maskbytes: %ud, valuebytes: %ud"
395 ", totalbytes: %d) ...\n",
396 subaddr
, maskbytes
, valuesbytes
, totalbytes
);
397 LOG_BLOB("pmf: mask data: \n", maskblob
, maskbytes
);
398 LOG_BLOB("pmf: values data: \n", valuesblob
, valuesbytes
);
400 PMF_PARSE_CALL(rmw_i2c_sub
, cmd
, h
, subaddr
, maskbytes
, valuesbytes
,
401 totalbytes
, maskblob
, valuesblob
);
404 static int pmf_parser_read_reg32_msrx(struct pmf_cmd
*cmd
,
405 struct pmf_handlers
*h
)
407 u32 offset
= pmf_next32(cmd
);
408 u32 mask
= pmf_next32(cmd
);
409 u32 shift
= pmf_next32(cmd
);
410 u32
xor = pmf_next32(cmd
);
412 LOG_PARSE("pmf: read_reg32_msrx(offset: %x, mask: %x, shift: %x,"
413 " xor: %x\n", offset
, mask
, shift
, xor);
415 PMF_PARSE_CALL(read_reg32_msrx
, cmd
, h
, offset
, mask
, shift
, xor);
418 static int pmf_parser_read_reg16_msrx(struct pmf_cmd
*cmd
,
419 struct pmf_handlers
*h
)
421 u32 offset
= pmf_next32(cmd
);
422 u32 mask
= pmf_next32(cmd
);
423 u32 shift
= pmf_next32(cmd
);
424 u32
xor = pmf_next32(cmd
);
426 LOG_PARSE("pmf: read_reg16_msrx(offset: %x, mask: %x, shift: %x,"
427 " xor: %x\n", offset
, mask
, shift
, xor);
429 PMF_PARSE_CALL(read_reg16_msrx
, cmd
, h
, offset
, mask
, shift
, xor);
431 static int pmf_parser_read_reg8_msrx(struct pmf_cmd
*cmd
,
432 struct pmf_handlers
*h
)
434 u32 offset
= pmf_next32(cmd
);
435 u32 mask
= pmf_next32(cmd
);
436 u32 shift
= pmf_next32(cmd
);
437 u32
xor = pmf_next32(cmd
);
439 LOG_PARSE("pmf: read_reg8_msrx(offset: %x, mask: %x, shift: %x,"
440 " xor: %x\n", offset
, mask
, shift
, xor);
442 PMF_PARSE_CALL(read_reg8_msrx
, cmd
, h
, offset
, mask
, shift
, xor);
445 static int pmf_parser_write_reg32_slm(struct pmf_cmd
*cmd
,
446 struct pmf_handlers
*h
)
448 u32 offset
= pmf_next32(cmd
);
449 u32 shift
= pmf_next32(cmd
);
450 u32 mask
= pmf_next32(cmd
);
452 LOG_PARSE("pmf: write_reg32_slm(offset: %x, shift: %x, mask: %x\n",
453 offset
, shift
, mask
);
455 PMF_PARSE_CALL(write_reg32_slm
, cmd
, h
, offset
, shift
, mask
);
458 static int pmf_parser_write_reg16_slm(struct pmf_cmd
*cmd
,
459 struct pmf_handlers
*h
)
461 u32 offset
= pmf_next32(cmd
);
462 u32 shift
= pmf_next32(cmd
);
463 u32 mask
= pmf_next32(cmd
);
465 LOG_PARSE("pmf: write_reg16_slm(offset: %x, shift: %x, mask: %x\n",
466 offset
, shift
, mask
);
468 PMF_PARSE_CALL(write_reg16_slm
, cmd
, h
, offset
, shift
, mask
);
471 static int pmf_parser_write_reg8_slm(struct pmf_cmd
*cmd
,
472 struct pmf_handlers
*h
)
474 u32 offset
= pmf_next32(cmd
);
475 u32 shift
= pmf_next32(cmd
);
476 u32 mask
= pmf_next32(cmd
);
478 LOG_PARSE("pmf: write_reg8_slm(offset: %x, shift: %x, mask: %x\n",
479 offset
, shift
, mask
);
481 PMF_PARSE_CALL(write_reg8_slm
, cmd
, h
, offset
, shift
, mask
);
484 static int pmf_parser_mask_and_compare(struct pmf_cmd
*cmd
,
485 struct pmf_handlers
*h
)
487 u32 bytes
= pmf_next32(cmd
);
488 const void *maskblob
= pmf_next_blob(cmd
, bytes
);
489 const void *valuesblob
= pmf_next_blob(cmd
, bytes
);
491 LOG_PARSE("pmf: mask_and_compare(length: %ud ...\n", bytes
);
492 LOG_BLOB("pmf: mask data: \n", maskblob
, bytes
);
493 LOG_BLOB("pmf: values data: \n", valuesblob
, bytes
);
495 PMF_PARSE_CALL(mask_and_compare
, cmd
, h
,
496 bytes
, maskblob
, valuesblob
);
500 typedef int (*pmf_cmd_parser_t
)(struct pmf_cmd
*cmd
, struct pmf_handlers
*h
);
502 static pmf_cmd_parser_t pmf_parsers
[PMF_CMD_COUNT
] =
505 pmf_parser_write_gpio
,
506 pmf_parser_read_gpio
,
507 pmf_parser_write_reg32
,
508 pmf_parser_read_reg32
,
509 pmf_parser_write_reg16
,
510 pmf_parser_read_reg16
,
511 pmf_parser_write_reg8
,
512 pmf_parser_read_reg8
,
514 pmf_parser_wait_reg32
,
515 pmf_parser_wait_reg16
,
516 pmf_parser_wait_reg8
,
518 pmf_parser_write_i2c
,
520 NULL
, /* Bogus command */
521 NULL
, /* Shift bytes right: NYI */
522 NULL
, /* Shift bytes left: NYI */
524 pmf_parser_write_cfg
,
526 pmf_parser_read_i2c_sub
,
527 pmf_parser_write_i2c_sub
,
528 pmf_parser_set_i2c_mode
,
529 pmf_parser_rmw_i2c_sub
,
530 pmf_parser_read_reg32_msrx
,
531 pmf_parser_read_reg16_msrx
,
532 pmf_parser_read_reg8_msrx
,
533 pmf_parser_write_reg32_slm
,
534 pmf_parser_write_reg16_slm
,
535 pmf_parser_write_reg8_slm
,
536 pmf_parser_mask_and_compare
,
540 struct list_head link
;
541 struct device_node
*node
;
542 struct pmf_handlers
*handlers
;
543 struct list_head functions
;
547 static LIST_HEAD(pmf_devices
);
548 static DEFINE_SPINLOCK(pmf_lock
);
549 static DEFINE_MUTEX(pmf_irq_mutex
);
551 static void pmf_release_device(struct kref
*kref
)
553 struct pmf_device
*dev
= container_of(kref
, struct pmf_device
, ref
);
557 static inline void pmf_put_device(struct pmf_device
*dev
)
559 kref_put(&dev
->ref
, pmf_release_device
);
562 static inline struct pmf_device
*pmf_get_device(struct pmf_device
*dev
)
568 static inline struct pmf_device
*pmf_find_device(struct device_node
*np
)
570 struct pmf_device
*dev
;
572 list_for_each_entry(dev
, &pmf_devices
, link
) {
574 return pmf_get_device(dev
);
579 static int pmf_parse_one(struct pmf_function
*func
,
580 struct pmf_handlers
*handlers
,
581 void *instdata
, struct pmf_args
*args
)
587 cmd
.cmdptr
= func
->data
;
588 cmd
.cmdend
= func
->data
+ func
->length
;
590 cmd
.instdata
= instdata
;
594 LOG_PARSE("pmf: func %s, %d bytes, %s...\n",
595 func
->name
, func
->length
,
596 handlers
? "executing" : "parsing");
598 /* One subcommand to parse for now */
601 while(count
-- && cmd
.cmdptr
< cmd
.cmdend
) {
603 ccode
= pmf_next32(&cmd
);
604 /* Check if we are hitting a command list, fetch new count */
606 count
= pmf_next32(&cmd
) - 1;
607 ccode
= pmf_next32(&cmd
);
610 LOG_ERROR("pmf: parse error, not enough data\n");
613 if (ccode
>= PMF_CMD_COUNT
) {
614 LOG_ERROR("pmf: command code %d unknown !\n", ccode
);
617 if (pmf_parsers
[ccode
] == NULL
) {
618 LOG_ERROR("pmf: no parser for command %d !\n", ccode
);
621 rc
= pmf_parsers
[ccode
](&cmd
, handlers
);
623 LOG_ERROR("pmf: parser for command %d returned"
624 " error %d\n", ccode
, rc
);
629 /* We are doing an initial parse pass, we need to adjust the size */
630 if (handlers
== NULL
)
631 func
->length
= cmd
.cmdptr
- func
->data
;
636 static int pmf_add_function_prop(struct pmf_device
*dev
, void *driverdata
,
637 const char *name
, u32
*data
,
641 struct pmf_function
*func
= NULL
;
643 DBG("pmf: Adding functions for platform-do-%s\n", name
);
645 while (length
>= 12) {
646 /* Allocate a structure */
647 func
= kzalloc(sizeof(struct pmf_function
), GFP_KERNEL
);
650 kref_init(&func
->ref
);
651 INIT_LIST_HEAD(&func
->irq_clients
);
652 func
->node
= dev
->node
;
653 func
->driver_data
= driverdata
;
655 func
->phandle
= data
[0];
656 func
->flags
= data
[1];
660 func
->length
= length
;
662 DBG("pmf: idx %d: flags=%08x, phandle=%08x "
663 " %d bytes remaining, parsing...\n",
664 count
+1, func
->flags
, func
->phandle
, length
);
665 if (pmf_parse_one(func
, NULL
, NULL
, NULL
)) {
669 length
-= func
->length
;
670 data
= (u32
*)(((u8
*)data
) + func
->length
);
671 list_add(&func
->link
, &dev
->functions
);
676 DBG("pmf: Added %d functions\n", count
);
681 static int pmf_add_functions(struct pmf_device
*dev
, void *driverdata
)
684 #define PP_PREFIX "platform-do-"
685 const int plen
= strlen(PP_PREFIX
);
688 for (pp
= dev
->node
->properties
; pp
!= 0; pp
= pp
->next
) {
690 if (strncmp(pp
->name
, PP_PREFIX
, plen
) != 0)
692 name
= pp
->name
+ plen
;
693 if (strlen(name
) && pp
->length
>= 12)
694 count
+= pmf_add_function_prop(dev
, driverdata
, name
,
702 int pmf_register_driver(struct device_node
*np
,
703 struct pmf_handlers
*handlers
,
706 struct pmf_device
*dev
;
710 if (handlers
== NULL
)
713 DBG("pmf: registering driver for node %s\n", np
->full_name
);
715 spin_lock_irqsave(&pmf_lock
, flags
);
716 dev
= pmf_find_device(np
);
717 spin_unlock_irqrestore(&pmf_lock
, flags
);
719 DBG("pmf: already there !\n");
724 dev
= kzalloc(sizeof(struct pmf_device
), GFP_KERNEL
);
726 DBG("pmf: no memory !\n");
729 kref_init(&dev
->ref
);
730 dev
->node
= of_node_get(np
);
731 dev
->handlers
= handlers
;
732 INIT_LIST_HEAD(&dev
->functions
);
734 rc
= pmf_add_functions(dev
, driverdata
);
736 DBG("pmf: no functions, disposing.. \n");
742 spin_lock_irqsave(&pmf_lock
, flags
);
743 list_add(&dev
->link
, &pmf_devices
);
744 spin_unlock_irqrestore(&pmf_lock
, flags
);
748 EXPORT_SYMBOL_GPL(pmf_register_driver
);
750 struct pmf_function
*pmf_get_function(struct pmf_function
*func
)
752 if (!try_module_get(func
->dev
->handlers
->owner
))
754 kref_get(&func
->ref
);
757 EXPORT_SYMBOL_GPL(pmf_get_function
);
759 static void pmf_release_function(struct kref
*kref
)
761 struct pmf_function
*func
=
762 container_of(kref
, struct pmf_function
, ref
);
763 pmf_put_device(func
->dev
);
767 static inline void __pmf_put_function(struct pmf_function
*func
)
769 kref_put(&func
->ref
, pmf_release_function
);
772 void pmf_put_function(struct pmf_function
*func
)
776 module_put(func
->dev
->handlers
->owner
);
777 __pmf_put_function(func
);
779 EXPORT_SYMBOL_GPL(pmf_put_function
);
781 void pmf_unregister_driver(struct device_node
*np
)
783 struct pmf_device
*dev
;
786 DBG("pmf: unregistering driver for node %s\n", np
->full_name
);
788 spin_lock_irqsave(&pmf_lock
, flags
);
789 dev
= pmf_find_device(np
);
791 DBG("pmf: not such driver !\n");
792 spin_unlock_irqrestore(&pmf_lock
, flags
);
795 list_del(&dev
->link
);
797 while(!list_empty(&dev
->functions
)) {
798 struct pmf_function
*func
=
799 list_entry(dev
->functions
.next
, typeof(*func
), link
);
800 list_del(&func
->link
);
801 __pmf_put_function(func
);
805 spin_unlock_irqrestore(&pmf_lock
, flags
);
807 EXPORT_SYMBOL_GPL(pmf_unregister_driver
);
809 struct pmf_function
*__pmf_find_function(struct device_node
*target
,
810 const char *name
, u32 flags
)
812 struct device_node
*actor
= of_node_get(target
);
813 struct pmf_device
*dev
;
814 struct pmf_function
*func
, *result
= NULL
;
820 * Look for a "platform-*" function reference. If we can't find
821 * one, then we fallback to a direct call attempt
823 snprintf(fname
, 63, "platform-%s", name
);
824 prop
= get_property(target
, fname
, NULL
);
832 * Ok, now try to find the actor. If we can't find it, we fail,
833 * there is no point in falling back there
836 actor
= of_find_node_by_phandle(ph
);
840 dev
= pmf_find_device(actor
);
844 list_for_each_entry(func
, &dev
->functions
, link
) {
845 if (name
&& strcmp(name
, func
->name
))
847 if (func
->phandle
&& target
->node
!= func
->phandle
)
849 if ((func
->flags
& flags
) == 0)
860 int pmf_register_irq_client(struct device_node
*target
,
862 struct pmf_irq_client
*client
)
864 struct pmf_function
*func
;
867 spin_lock_irqsave(&pmf_lock
, flags
);
868 func
= __pmf_find_function(target
, name
, PMF_FLAGS_INT_GEN
);
870 func
= pmf_get_function(func
);
871 spin_unlock_irqrestore(&pmf_lock
, flags
);
875 /* guard against manipulations of list */
876 mutex_lock(&pmf_irq_mutex
);
877 if (list_empty(&func
->irq_clients
))
878 func
->dev
->handlers
->irq_enable(func
);
880 /* guard against pmf_do_irq while changing list */
881 spin_lock_irqsave(&pmf_lock
, flags
);
882 list_add(&client
->link
, &func
->irq_clients
);
883 spin_unlock_irqrestore(&pmf_lock
, flags
);
886 mutex_unlock(&pmf_irq_mutex
);
890 EXPORT_SYMBOL_GPL(pmf_register_irq_client
);
892 void pmf_unregister_irq_client(struct pmf_irq_client
*client
)
894 struct pmf_function
*func
= client
->func
;
897 BUG_ON(func
== NULL
);
899 /* guard against manipulations of list */
900 mutex_lock(&pmf_irq_mutex
);
903 /* guard against pmf_do_irq while changing list */
904 spin_lock_irqsave(&pmf_lock
, flags
);
905 list_del(&client
->link
);
906 spin_unlock_irqrestore(&pmf_lock
, flags
);
908 if (list_empty(&func
->irq_clients
))
909 func
->dev
->handlers
->irq_disable(func
);
910 mutex_unlock(&pmf_irq_mutex
);
911 pmf_put_function(func
);
913 EXPORT_SYMBOL_GPL(pmf_unregister_irq_client
);
916 void pmf_do_irq(struct pmf_function
*func
)
919 struct pmf_irq_client
*client
;
921 /* For now, using a spinlock over the whole function. Can be made
922 * to drop the lock using 2 lists if necessary
924 spin_lock_irqsave(&pmf_lock
, flags
);
925 list_for_each_entry(client
, &func
->irq_clients
, link
) {
926 if (!try_module_get(client
->owner
))
928 client
->handler(client
->data
);
929 module_put(client
->owner
);
931 spin_unlock_irqrestore(&pmf_lock
, flags
);
933 EXPORT_SYMBOL_GPL(pmf_do_irq
);
936 int pmf_call_one(struct pmf_function
*func
, struct pmf_args
*args
)
938 struct pmf_device
*dev
= func
->dev
;
939 void *instdata
= NULL
;
942 DBG(" ** pmf_call_one(%s/%s) **\n", dev
->node
->full_name
, func
->name
);
944 if (dev
->handlers
->begin
)
945 instdata
= dev
->handlers
->begin(func
, args
);
946 rc
= pmf_parse_one(func
, dev
->handlers
, instdata
, args
);
947 if (dev
->handlers
->end
)
948 dev
->handlers
->end(func
, instdata
);
952 EXPORT_SYMBOL_GPL(pmf_call_one
);
954 int pmf_do_functions(struct device_node
*np
, const char *name
,
955 u32 phandle
, u32 fflags
, struct pmf_args
*args
)
957 struct pmf_device
*dev
;
958 struct pmf_function
*func
, *tmp
;
962 spin_lock_irqsave(&pmf_lock
, flags
);
964 dev
= pmf_find_device(np
);
966 spin_unlock_irqrestore(&pmf_lock
, flags
);
969 list_for_each_entry_safe(func
, tmp
, &dev
->functions
, link
) {
970 if (name
&& strcmp(name
, func
->name
))
972 if (phandle
&& func
->phandle
&& phandle
!= func
->phandle
)
974 if ((func
->flags
& fflags
) == 0)
976 if (pmf_get_function(func
) == NULL
)
978 spin_unlock_irqrestore(&pmf_lock
, flags
);
979 rc
= pmf_call_one(func
, args
);
980 pmf_put_function(func
);
981 spin_lock_irqsave(&pmf_lock
, flags
);
984 spin_unlock_irqrestore(&pmf_lock
, flags
);
988 EXPORT_SYMBOL_GPL(pmf_do_functions
);
991 struct pmf_function
*pmf_find_function(struct device_node
*target
,
994 struct pmf_function
*func
;
997 spin_lock_irqsave(&pmf_lock
, flags
);
998 func
= __pmf_find_function(target
, name
, PMF_FLAGS_ON_DEMAND
);
1000 func
= pmf_get_function(func
);
1001 spin_unlock_irqrestore(&pmf_lock
, flags
);
1004 EXPORT_SYMBOL_GPL(pmf_find_function
);
1006 int pmf_call_function(struct device_node
*target
, const char *name
,
1007 struct pmf_args
*args
)
1009 struct pmf_function
*func
= pmf_find_function(target
, name
);
1015 rc
= pmf_call_one(func
, args
);
1016 pmf_put_function(func
);
1019 EXPORT_SYMBOL_GPL(pmf_call_function
);