1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) IBM Corporation 2016
10 * - s/cfam/chip (cfam_id -> chip_id etc...)
13 #include <linux/crc4.h>
14 #include <linux/device.h>
15 #include <linux/fsi.h>
16 #include <linux/idr.h>
17 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/bitops.h>
21 #include <linux/cdev.h>
23 #include <linux/uaccess.h>
25 #include "fsi-master.h"
27 #define CREATE_TRACE_POINTS
28 #include <trace/events/fsi.h>
30 #define FSI_SLAVE_CONF_NEXT_MASK GENMASK(31, 31)
31 #define FSI_SLAVE_CONF_SLOTS_MASK GENMASK(23, 16)
32 #define FSI_SLAVE_CONF_SLOTS_SHIFT 16
33 #define FSI_SLAVE_CONF_VERSION_MASK GENMASK(15, 12)
34 #define FSI_SLAVE_CONF_VERSION_SHIFT 12
35 #define FSI_SLAVE_CONF_TYPE_MASK GENMASK(11, 4)
36 #define FSI_SLAVE_CONF_TYPE_SHIFT 4
37 #define FSI_SLAVE_CONF_CRC_SHIFT 4
38 #define FSI_SLAVE_CONF_CRC_MASK GENMASK(3, 0)
39 #define FSI_SLAVE_CONF_DATA_BITS 28
41 #define FSI_PEEK_BASE 0x410
43 static const int engine_page_size
= 0x400;
45 #define FSI_SLAVE_BASE 0x800
48 * FSI slave engine control register offsets
50 #define FSI_SMODE 0x0 /* R/W: Mode register */
51 #define FSI_SISC 0x8 /* R/W: Interrupt condition */
52 #define FSI_SSTAT 0x14 /* R : Slave status */
53 #define FSI_SLBUS 0x30 /* W : LBUS Ownership */
54 #define FSI_LLMODE 0x100 /* R/W: Link layer mode register */
59 #define FSI_SMODE_WSC 0x80000000 /* Warm start done */
60 #define FSI_SMODE_ECRC 0x20000000 /* Hw CRC check */
61 #define FSI_SMODE_SID_SHIFT 24 /* ID shift */
62 #define FSI_SMODE_SID_MASK 3 /* ID Mask */
63 #define FSI_SMODE_ED_SHIFT 20 /* Echo delay shift */
64 #define FSI_SMODE_ED_MASK 0xf /* Echo delay mask */
65 #define FSI_SMODE_SD_SHIFT 16 /* Send delay shift */
66 #define FSI_SMODE_SD_MASK 0xf /* Send delay mask */
67 #define FSI_SMODE_LBCRR_SHIFT 8 /* Clk ratio shift */
68 #define FSI_SMODE_LBCRR_MASK 0xf /* Clk ratio mask */
73 #define FSI_SLBUS_FORCE 0x80000000 /* Force LBUS ownership */
78 #define FSI_LLMODE_ASYNC 0x1
80 #define FSI_SLAVE_SIZE_23b 0x800000
82 static DEFINE_IDA(master_ida
);
86 struct fsi_master
*master
;
89 int id
; /* FSI address */
90 int link
; /* FSI link# */
93 uint32_t size
; /* size of slave address space */
98 #define to_fsi_master(d) container_of(d, struct fsi_master, dev)
99 #define to_fsi_slave(d) container_of(d, struct fsi_slave, dev)
101 static const int slave_retries
= 2;
102 static int discard_errors
;
104 static dev_t fsi_base_dev
;
105 static DEFINE_IDA(fsi_minor_ida
);
106 #define FSI_CHAR_MAX_DEVICES 0x1000
108 /* Legacy /dev numbering: 4 devices per chip, 16 chips */
109 #define FSI_CHAR_LEGACY_TOP 64
111 static int fsi_master_read(struct fsi_master
*master
, int link
,
112 uint8_t slave_id
, uint32_t addr
, void *val
, size_t size
);
113 static int fsi_master_write(struct fsi_master
*master
, int link
,
114 uint8_t slave_id
, uint32_t addr
, const void *val
, size_t size
);
115 static int fsi_master_break(struct fsi_master
*master
, int link
);
118 * fsi_device_read() / fsi_device_write() / fsi_device_peek()
120 * FSI endpoint-device support
122 * Read / write / peek accessors for a client
125 * dev: Structure passed to FSI client device drivers on probe().
126 * addr: FSI address of given device. Client should pass in its base address
127 * plus desired offset to access its register space.
128 * val: For read/peek this is the value read at the specified address. For
129 * write this is value to write to the specified address.
130 * The data in val must be FSI bus endian (big endian).
131 * size: Size in bytes of the operation. Sizes supported are 1, 2 and 4 bytes.
132 * Addresses must be aligned on size boundaries or an error will result.
134 int fsi_device_read(struct fsi_device
*dev
, uint32_t addr
, void *val
,
137 if (addr
> dev
->size
|| size
> dev
->size
|| addr
> dev
->size
- size
)
140 return fsi_slave_read(dev
->slave
, dev
->addr
+ addr
, val
, size
);
142 EXPORT_SYMBOL_GPL(fsi_device_read
);
144 int fsi_device_write(struct fsi_device
*dev
, uint32_t addr
, const void *val
,
147 if (addr
> dev
->size
|| size
> dev
->size
|| addr
> dev
->size
- size
)
150 return fsi_slave_write(dev
->slave
, dev
->addr
+ addr
, val
, size
);
152 EXPORT_SYMBOL_GPL(fsi_device_write
);
154 int fsi_device_peek(struct fsi_device
*dev
, void *val
)
156 uint32_t addr
= FSI_PEEK_BASE
+ ((dev
->unit
- 2) * sizeof(uint32_t));
158 return fsi_slave_read(dev
->slave
, addr
, val
, sizeof(uint32_t));
161 static void fsi_device_release(struct device
*_device
)
163 struct fsi_device
*device
= to_fsi_dev(_device
);
165 of_node_put(device
->dev
.of_node
);
169 static struct fsi_device
*fsi_create_device(struct fsi_slave
*slave
)
171 struct fsi_device
*dev
;
173 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
177 dev
->dev
.parent
= &slave
->dev
;
178 dev
->dev
.bus
= &fsi_bus_type
;
179 dev
->dev
.release
= fsi_device_release
;
184 /* FSI slave support */
185 static int fsi_slave_calc_addr(struct fsi_slave
*slave
, uint32_t *addrp
,
188 uint32_t addr
= *addrp
;
191 if (addr
> slave
->size
)
194 /* For 23 bit addressing, we encode the extra two bits in the slave
195 * id (and the slave's actual ID needs to be 0).
197 if (addr
> 0x1fffff) {
200 id
= (addr
>> 21) & 0x3;
209 static int fsi_slave_report_and_clear_errors(struct fsi_slave
*slave
)
211 struct fsi_master
*master
= slave
->master
;
219 rc
= fsi_master_read(master
, link
, id
, FSI_SLAVE_BASE
+ FSI_SISC
,
224 rc
= fsi_master_read(master
, link
, id
, FSI_SLAVE_BASE
+ FSI_SSTAT
,
225 &stat
, sizeof(stat
));
229 dev_dbg(&slave
->dev
, "status: 0x%08x, sisc: 0x%08x\n",
230 be32_to_cpu(stat
), be32_to_cpu(irq
));
232 /* clear interrupts */
233 return fsi_master_write(master
, link
, id
, FSI_SLAVE_BASE
+ FSI_SISC
,
237 /* Encode slave local bus echo delay */
238 static inline uint32_t fsi_smode_echodly(int x
)
240 return (x
& FSI_SMODE_ED_MASK
) << FSI_SMODE_ED_SHIFT
;
243 /* Encode slave local bus send delay */
244 static inline uint32_t fsi_smode_senddly(int x
)
246 return (x
& FSI_SMODE_SD_MASK
) << FSI_SMODE_SD_SHIFT
;
249 /* Encode slave local bus clock rate ratio */
250 static inline uint32_t fsi_smode_lbcrr(int x
)
252 return (x
& FSI_SMODE_LBCRR_MASK
) << FSI_SMODE_LBCRR_SHIFT
;
255 /* Encode slave ID */
256 static inline uint32_t fsi_smode_sid(int x
)
258 return (x
& FSI_SMODE_SID_MASK
) << FSI_SMODE_SID_SHIFT
;
261 static uint32_t fsi_slave_smode(int id
, u8 t_senddly
, u8 t_echodly
)
263 return FSI_SMODE_WSC
| FSI_SMODE_ECRC
265 | fsi_smode_echodly(t_echodly
- 1) | fsi_smode_senddly(t_senddly
- 1)
266 | fsi_smode_lbcrr(0x8);
269 static int fsi_slave_set_smode(struct fsi_slave
*slave
)
274 /* set our smode register with the slave ID field to 0; this enables
275 * extended slave addressing
277 smode
= fsi_slave_smode(slave
->id
, slave
->t_send_delay
, slave
->t_echo_delay
);
278 data
= cpu_to_be32(smode
);
280 return fsi_master_write(slave
->master
, slave
->link
, slave
->id
,
281 FSI_SLAVE_BASE
+ FSI_SMODE
,
282 &data
, sizeof(data
));
285 static int fsi_slave_handle_error(struct fsi_slave
*slave
, bool write
,
286 uint32_t addr
, size_t size
)
288 struct fsi_master
*master
= slave
->master
;
291 uint8_t id
, send_delay
, echo_delay
;
299 dev_dbg(&slave
->dev
, "handling error on %s to 0x%08x[%zd]",
300 write
? "write" : "read", addr
, size
);
302 /* try a simple clear of error conditions, which may fail if we've lost
303 * communication with the slave
305 rc
= fsi_slave_report_and_clear_errors(slave
);
309 /* send a TERM and retry */
311 rc
= master
->term(master
, link
, id
);
313 rc
= fsi_master_read(master
, link
, id
, 0,
316 rc
= fsi_slave_report_and_clear_errors(slave
);
322 send_delay
= slave
->t_send_delay
;
323 echo_delay
= slave
->t_echo_delay
;
325 /* getting serious, reset the slave via BREAK */
326 rc
= fsi_master_break(master
, link
);
330 slave
->t_send_delay
= send_delay
;
331 slave
->t_echo_delay
= echo_delay
;
333 rc
= fsi_slave_set_smode(slave
);
337 if (master
->link_config
)
338 master
->link_config(master
, link
,
340 slave
->t_echo_delay
);
342 return fsi_slave_report_and_clear_errors(slave
);
345 int fsi_slave_read(struct fsi_slave
*slave
, uint32_t addr
,
346 void *val
, size_t size
)
348 uint8_t id
= slave
->id
;
351 rc
= fsi_slave_calc_addr(slave
, &addr
, &id
);
355 for (i
= 0; i
< slave_retries
; i
++) {
356 rc
= fsi_master_read(slave
->master
, slave
->link
,
357 id
, addr
, val
, size
);
361 err_rc
= fsi_slave_handle_error(slave
, false, addr
, size
);
368 EXPORT_SYMBOL_GPL(fsi_slave_read
);
370 int fsi_slave_write(struct fsi_slave
*slave
, uint32_t addr
,
371 const void *val
, size_t size
)
373 uint8_t id
= slave
->id
;
376 rc
= fsi_slave_calc_addr(slave
, &addr
, &id
);
380 for (i
= 0; i
< slave_retries
; i
++) {
381 rc
= fsi_master_write(slave
->master
, slave
->link
,
382 id
, addr
, val
, size
);
386 err_rc
= fsi_slave_handle_error(slave
, true, addr
, size
);
393 EXPORT_SYMBOL_GPL(fsi_slave_write
);
395 extern int fsi_slave_claim_range(struct fsi_slave
*slave
,
396 uint32_t addr
, uint32_t size
)
398 if (addr
+ size
< addr
)
401 if (addr
+ size
> slave
->size
)
404 /* todo: check for overlapping claims */
407 EXPORT_SYMBOL_GPL(fsi_slave_claim_range
);
409 extern void fsi_slave_release_range(struct fsi_slave
*slave
,
410 uint32_t addr
, uint32_t size
)
413 EXPORT_SYMBOL_GPL(fsi_slave_release_range
);
415 static bool fsi_device_node_matches(struct device
*dev
, struct device_node
*np
,
416 uint32_t addr
, uint32_t size
)
418 unsigned int len
, na
, ns
;
422 na
= of_n_addr_cells(np
);
423 ns
= of_n_size_cells(np
);
425 if (na
!= 1 || ns
!= 1)
428 prop
= of_get_property(np
, "reg", &len
);
429 if (!prop
|| len
!= 8)
432 if (of_read_number(prop
, 1) != addr
)
435 psize
= of_read_number(prop
+ 1, 1);
438 "node %s matches probed address, but not size (got 0x%x, expected 0x%x)",
439 of_node_full_name(np
), psize
, size
);
445 /* Find a matching node for the slave engine at @address, using @size bytes
446 * of space. Returns NULL if not found, or a matching node with refcount
447 * already incremented.
449 static struct device_node
*fsi_device_find_of_node(struct fsi_device
*dev
)
451 struct device_node
*parent
, *np
;
453 parent
= dev_of_node(&dev
->slave
->dev
);
457 for_each_child_of_node(parent
, np
) {
458 if (fsi_device_node_matches(&dev
->dev
, np
,
459 dev
->addr
, dev
->size
))
466 static int fsi_slave_scan(struct fsi_slave
*slave
)
468 uint32_t engine_addr
;
474 * We keep the peek mode and slave engines for the core; so start
475 * at the third slot in the configuration table. We also need to
476 * skip the chip ID entry at the start of the address space.
478 engine_addr
= engine_page_size
* 3;
479 for (i
= 2; i
< engine_page_size
/ sizeof(uint32_t); i
++) {
480 uint8_t slots
, version
, type
, crc
;
481 struct fsi_device
*dev
;
485 rc
= fsi_slave_read(slave
, (i
+ 1) * sizeof(data
),
486 &data
, sizeof(data
));
488 dev_warn(&slave
->dev
,
489 "error reading slave registers\n");
492 conf
= be32_to_cpu(data
);
494 crc
= crc4(0, conf
, 32);
496 dev_warn(&slave
->dev
,
497 "crc error in slave register at 0x%04x\n",
502 slots
= (conf
& FSI_SLAVE_CONF_SLOTS_MASK
)
503 >> FSI_SLAVE_CONF_SLOTS_SHIFT
;
504 version
= (conf
& FSI_SLAVE_CONF_VERSION_MASK
)
505 >> FSI_SLAVE_CONF_VERSION_SHIFT
;
506 type
= (conf
& FSI_SLAVE_CONF_TYPE_MASK
)
507 >> FSI_SLAVE_CONF_TYPE_SHIFT
;
510 * Unused address areas are marked by a zero type value; this
511 * skips the defined address areas
513 if (type
!= 0 && slots
!= 0) {
516 dev
= fsi_create_device(slave
);
521 dev
->engine_type
= type
;
522 dev
->version
= version
;
524 dev
->addr
= engine_addr
;
525 dev
->size
= slots
* engine_page_size
;
528 "engine[%i]: type %x, version %x, addr %x size %x\n",
529 dev
->unit
, dev
->engine_type
, version
,
530 dev
->addr
, dev
->size
);
532 dev_set_name(&dev
->dev
, "%02x:%02x:%02x:%02x",
533 slave
->master
->idx
, slave
->link
,
535 dev
->dev
.of_node
= fsi_device_find_of_node(dev
);
537 rc
= device_register(&dev
->dev
);
539 dev_warn(&slave
->dev
, "add failed: %d\n", rc
);
540 put_device(&dev
->dev
);
544 engine_addr
+= slots
* engine_page_size
;
546 if (!(conf
& FSI_SLAVE_CONF_NEXT_MASK
))
553 static unsigned long aligned_access_size(size_t offset
, size_t count
)
555 unsigned long offset_unit
, count_unit
;
559 * 1. Access size must be less than or equal to the maximum access
560 * width or the highest power-of-two factor of offset
561 * 2. Access size must be less than or equal to the amount specified by
564 * The access width is optimal if we can calculate 1 to be strictly
565 * equal while still satisfying 2.
568 /* Find 1 by the bottom bit of offset (with a 4 byte access cap) */
569 offset_unit
= BIT(__builtin_ctzl(offset
| 4));
571 /* Find 2 by the top bit of count */
572 count_unit
= BIT(8 * sizeof(unsigned long) - 1 - __builtin_clzl(count
));
574 /* Constrain the maximum access width to the minimum of both criteria */
575 return BIT(__builtin_ctzl(offset_unit
| count_unit
));
578 static ssize_t
fsi_slave_sysfs_raw_read(struct file
*file
,
579 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
580 loff_t off
, size_t count
)
582 struct fsi_slave
*slave
= to_fsi_slave(kobj_to_dev(kobj
));
583 size_t total_len
, read_len
;
589 if (off
> 0xffffffff || count
> 0xffffffff || off
+ count
> 0xffffffff)
592 for (total_len
= 0; total_len
< count
; total_len
+= read_len
) {
593 read_len
= aligned_access_size(off
, count
- total_len
);
595 rc
= fsi_slave_read(slave
, off
, buf
+ total_len
, read_len
);
605 static ssize_t
fsi_slave_sysfs_raw_write(struct file
*file
,
606 struct kobject
*kobj
, struct bin_attribute
*attr
,
607 char *buf
, loff_t off
, size_t count
)
609 struct fsi_slave
*slave
= to_fsi_slave(kobj_to_dev(kobj
));
610 size_t total_len
, write_len
;
616 if (off
> 0xffffffff || count
> 0xffffffff || off
+ count
> 0xffffffff)
619 for (total_len
= 0; total_len
< count
; total_len
+= write_len
) {
620 write_len
= aligned_access_size(off
, count
- total_len
);
622 rc
= fsi_slave_write(slave
, off
, buf
+ total_len
, write_len
);
632 static const struct bin_attribute fsi_slave_raw_attr
= {
638 .read
= fsi_slave_sysfs_raw_read
,
639 .write
= fsi_slave_sysfs_raw_write
,
642 static void fsi_slave_release(struct device
*dev
)
644 struct fsi_slave
*slave
= to_fsi_slave(dev
);
646 fsi_free_minor(slave
->dev
.devt
);
647 of_node_put(dev
->of_node
);
651 static bool fsi_slave_node_matches(struct device_node
*np
,
652 int link
, uint8_t id
)
654 unsigned int len
, na
, ns
;
657 na
= of_n_addr_cells(np
);
658 ns
= of_n_size_cells(np
);
660 /* Ensure we have the correct format for addresses and sizes in
663 if (na
!= 2 || ns
!= 0)
666 prop
= of_get_property(np
, "reg", &len
);
667 if (!prop
|| len
!= 8)
670 return (of_read_number(prop
, 1) == link
) &&
671 (of_read_number(prop
+ 1, 1) == id
);
674 /* Find a matching node for the slave at (link, id). Returns NULL if none
675 * found, or a matching node with refcount already incremented.
677 static struct device_node
*fsi_slave_find_of_node(struct fsi_master
*master
,
678 int link
, uint8_t id
)
680 struct device_node
*parent
, *np
;
682 parent
= dev_of_node(&master
->dev
);
686 for_each_child_of_node(parent
, np
) {
687 if (fsi_slave_node_matches(np
, link
, id
))
694 static ssize_t
cfam_read(struct file
*filep
, char __user
*buf
, size_t count
,
697 struct fsi_slave
*slave
= filep
->private_data
;
698 size_t total_len
, read_len
;
699 loff_t off
= *offset
;
705 if (off
> 0xffffffff || count
> 0xffffffff || off
+ count
> 0xffffffff)
708 for (total_len
= 0; total_len
< count
; total_len
+= read_len
) {
711 read_len
= min_t(size_t, count
, 4);
712 read_len
-= off
& 0x3;
714 rc
= fsi_slave_read(slave
, off
, &data
, read_len
);
717 rc
= copy_to_user(buf
+ total_len
, &data
, read_len
);
730 static ssize_t
cfam_write(struct file
*filep
, const char __user
*buf
,
731 size_t count
, loff_t
*offset
)
733 struct fsi_slave
*slave
= filep
->private_data
;
734 size_t total_len
, write_len
;
735 loff_t off
= *offset
;
742 if (off
> 0xffffffff || count
> 0xffffffff || off
+ count
> 0xffffffff)
745 for (total_len
= 0; total_len
< count
; total_len
+= write_len
) {
748 write_len
= min_t(size_t, count
, 4);
749 write_len
-= off
& 0x3;
751 rc
= copy_from_user(&data
, buf
+ total_len
, write_len
);
756 rc
= fsi_slave_write(slave
, off
, &data
, write_len
);
767 static loff_t
cfam_llseek(struct file
*file
, loff_t offset
, int whence
)
773 file
->f_pos
= offset
;
782 static int cfam_open(struct inode
*inode
, struct file
*file
)
784 struct fsi_slave
*slave
= container_of(inode
->i_cdev
, struct fsi_slave
, cdev
);
786 file
->private_data
= slave
;
791 static const struct file_operations cfam_fops
= {
792 .owner
= THIS_MODULE
,
794 .llseek
= cfam_llseek
,
799 static ssize_t
send_term_store(struct device
*dev
,
800 struct device_attribute
*attr
,
801 const char *buf
, size_t count
)
803 struct fsi_slave
*slave
= to_fsi_slave(dev
);
804 struct fsi_master
*master
= slave
->master
;
809 master
->term(master
, slave
->link
, slave
->id
);
813 static DEVICE_ATTR_WO(send_term
);
815 static ssize_t
slave_send_echo_show(struct device
*dev
,
816 struct device_attribute
*attr
,
819 struct fsi_slave
*slave
= to_fsi_slave(dev
);
821 return sprintf(buf
, "%u\n", slave
->t_send_delay
);
824 static ssize_t
slave_send_echo_store(struct device
*dev
,
825 struct device_attribute
*attr
, const char *buf
, size_t count
)
827 struct fsi_slave
*slave
= to_fsi_slave(dev
);
828 struct fsi_master
*master
= slave
->master
;
832 if (kstrtoul(buf
, 0, &val
) < 0)
835 if (val
< 1 || val
> 16)
838 if (!master
->link_config
)
841 /* Current HW mandates that send and echo delay are identical */
842 slave
->t_send_delay
= val
;
843 slave
->t_echo_delay
= val
;
845 rc
= fsi_slave_set_smode(slave
);
848 if (master
->link_config
)
849 master
->link_config(master
, slave
->link
,
851 slave
->t_echo_delay
);
856 static DEVICE_ATTR(send_echo_delays
, 0600,
857 slave_send_echo_show
, slave_send_echo_store
);
859 static ssize_t
chip_id_show(struct device
*dev
,
860 struct device_attribute
*attr
,
863 struct fsi_slave
*slave
= to_fsi_slave(dev
);
865 return sprintf(buf
, "%d\n", slave
->chip_id
);
868 static DEVICE_ATTR_RO(chip_id
);
870 static ssize_t
cfam_id_show(struct device
*dev
,
871 struct device_attribute
*attr
,
874 struct fsi_slave
*slave
= to_fsi_slave(dev
);
876 return sprintf(buf
, "0x%x\n", slave
->cfam_id
);
879 static DEVICE_ATTR_RO(cfam_id
);
881 static struct attribute
*cfam_attr
[] = {
882 &dev_attr_send_echo_delays
.attr
,
883 &dev_attr_chip_id
.attr
,
884 &dev_attr_cfam_id
.attr
,
885 &dev_attr_send_term
.attr
,
889 static const struct attribute_group cfam_attr_group
= {
893 static const struct attribute_group
*cfam_attr_groups
[] = {
898 static char *cfam_devnode(struct device
*dev
, umode_t
*mode
,
899 kuid_t
*uid
, kgid_t
*gid
)
901 struct fsi_slave
*slave
= to_fsi_slave(dev
);
903 #ifdef CONFIG_FSI_NEW_DEV_NODE
904 return kasprintf(GFP_KERNEL
, "fsi/cfam%d", slave
->cdev_idx
);
906 return kasprintf(GFP_KERNEL
, "cfam%d", slave
->cdev_idx
);
910 static const struct device_type cfam_type
= {
912 .devnode
= cfam_devnode
,
913 .groups
= cfam_attr_groups
916 static char *fsi_cdev_devnode(struct device
*dev
, umode_t
*mode
,
917 kuid_t
*uid
, kgid_t
*gid
)
919 #ifdef CONFIG_FSI_NEW_DEV_NODE
920 return kasprintf(GFP_KERNEL
, "fsi/%s", dev_name(dev
));
922 return kasprintf(GFP_KERNEL
, "%s", dev_name(dev
));
926 const struct device_type fsi_cdev_type
= {
928 .devnode
= fsi_cdev_devnode
,
930 EXPORT_SYMBOL_GPL(fsi_cdev_type
);
932 /* Backward compatible /dev/ numbering in "old style" mode */
933 static int fsi_adjust_index(int index
)
935 #ifdef CONFIG_FSI_NEW_DEV_NODE
942 static int __fsi_get_new_minor(struct fsi_slave
*slave
, enum fsi_dev_type type
,
943 dev_t
*out_dev
, int *out_index
)
945 int cid
= slave
->chip_id
;
948 /* Check if we qualify for legacy numbering */
949 if (cid
>= 0 && cid
< 16 && type
< 4) {
950 /* Try reserving the legacy number */
951 id
= (cid
<< 4) | type
;
952 id
= ida_simple_get(&fsi_minor_ida
, id
, id
+ 1, GFP_KERNEL
);
954 *out_index
= fsi_adjust_index(cid
);
955 *out_dev
= fsi_base_dev
+ id
;
961 /* Fallback to non-legacy allocation */
963 id
= ida_simple_get(&fsi_minor_ida
, FSI_CHAR_LEGACY_TOP
,
964 FSI_CHAR_MAX_DEVICES
, GFP_KERNEL
);
967 *out_index
= fsi_adjust_index(id
);
968 *out_dev
= fsi_base_dev
+ id
;
972 int fsi_get_new_minor(struct fsi_device
*fdev
, enum fsi_dev_type type
,
973 dev_t
*out_dev
, int *out_index
)
975 return __fsi_get_new_minor(fdev
->slave
, type
, out_dev
, out_index
);
977 EXPORT_SYMBOL_GPL(fsi_get_new_minor
);
979 void fsi_free_minor(dev_t dev
)
981 ida_simple_remove(&fsi_minor_ida
, MINOR(dev
));
983 EXPORT_SYMBOL_GPL(fsi_free_minor
);
985 static int fsi_slave_init(struct fsi_master
*master
, int link
, uint8_t id
)
988 struct fsi_slave
*slave
;
990 __be32 data
, llmode
, slbus
;
993 /* Currently, we only support single slaves on a link, and use the
994 * full 23-bit address range
999 rc
= fsi_master_read(master
, link
, id
, 0, &data
, sizeof(data
));
1001 dev_dbg(&master
->dev
, "can't read slave %02x:%02x %d\n",
1005 cfam_id
= be32_to_cpu(data
);
1007 crc
= crc4(0, cfam_id
, 32);
1009 dev_warn(&master
->dev
, "slave %02x:%02x invalid cfam id CRC!\n",
1014 dev_dbg(&master
->dev
, "fsi: found chip %08x at %02x:%02x:%02x\n",
1015 cfam_id
, master
->idx
, link
, id
);
1017 /* If we're behind a master that doesn't provide a self-running bus
1018 * clock, put the slave into async mode
1020 if (master
->flags
& FSI_MASTER_FLAG_SWCLOCK
) {
1021 llmode
= cpu_to_be32(FSI_LLMODE_ASYNC
);
1022 rc
= fsi_master_write(master
, link
, id
,
1023 FSI_SLAVE_BASE
+ FSI_LLMODE
,
1024 &llmode
, sizeof(llmode
));
1026 dev_warn(&master
->dev
,
1027 "can't set llmode on slave:%02x:%02x %d\n",
1031 /* We can communicate with a slave; create the slave device and
1034 slave
= kzalloc(sizeof(*slave
), GFP_KERNEL
);
1038 dev_set_name(&slave
->dev
, "slave@%02x:%02x", link
, id
);
1039 slave
->dev
.type
= &cfam_type
;
1040 slave
->dev
.parent
= &master
->dev
;
1041 slave
->dev
.of_node
= fsi_slave_find_of_node(master
, link
, id
);
1042 slave
->dev
.release
= fsi_slave_release
;
1043 device_initialize(&slave
->dev
);
1044 slave
->cfam_id
= cfam_id
;
1045 slave
->master
= master
;
1048 slave
->size
= FSI_SLAVE_SIZE_23b
;
1049 slave
->t_send_delay
= 16;
1050 slave
->t_echo_delay
= 16;
1052 /* Get chip ID if any */
1053 slave
->chip_id
= -1;
1054 if (slave
->dev
.of_node
) {
1056 if (!of_property_read_u32(slave
->dev
.of_node
, "chip-id", &prop
))
1057 slave
->chip_id
= prop
;
1061 slbus
= cpu_to_be32(FSI_SLBUS_FORCE
);
1062 rc
= fsi_master_write(master
, link
, id
, FSI_SLAVE_BASE
+ FSI_SLBUS
,
1063 &slbus
, sizeof(slbus
));
1065 dev_warn(&master
->dev
,
1066 "can't set slbus on slave:%02x:%02x %d\n", link
, id
,
1069 rc
= fsi_slave_set_smode(slave
);
1071 dev_warn(&master
->dev
,
1072 "can't set smode on slave:%02x:%02x %d\n",
1077 /* Allocate a minor in the FSI space */
1078 rc
= __fsi_get_new_minor(slave
, fsi_dev_cfam
, &slave
->dev
.devt
,
1083 /* Create chardev for userspace access */
1084 cdev_init(&slave
->cdev
, &cfam_fops
);
1085 rc
= cdev_device_add(&slave
->cdev
, &slave
->dev
);
1087 dev_err(&slave
->dev
, "Error %d creating slave device\n", rc
);
1091 /* Now that we have the cdev registered with the core, any fatal
1092 * failures beyond this point will need to clean up through
1093 * cdev_device_del(). Fortunately though, nothing past here is fatal.
1096 if (master
->link_config
)
1097 master
->link_config(master
, link
,
1098 slave
->t_send_delay
,
1099 slave
->t_echo_delay
);
1101 /* Legacy raw file -> to be removed */
1102 rc
= device_create_bin_file(&slave
->dev
, &fsi_slave_raw_attr
);
1104 dev_warn(&slave
->dev
, "failed to create raw attr: %d\n", rc
);
1107 rc
= fsi_slave_scan(slave
);
1109 dev_dbg(&master
->dev
, "failed during slave scan with: %d\n",
1115 fsi_free_minor(slave
->dev
.devt
);
1117 of_node_put(slave
->dev
.of_node
);
1122 /* FSI master support */
1123 static int fsi_check_access(uint32_t addr
, size_t size
)
1128 } else if (size
== 2) {
1131 } else if (size
!= 1)
1137 static int fsi_master_read(struct fsi_master
*master
, int link
,
1138 uint8_t slave_id
, uint32_t addr
, void *val
, size_t size
)
1142 trace_fsi_master_read(master
, link
, slave_id
, addr
, size
);
1144 rc
= fsi_check_access(addr
, size
);
1146 rc
= master
->read(master
, link
, slave_id
, addr
, val
, size
);
1148 trace_fsi_master_rw_result(master
, link
, slave_id
, addr
, size
,
1154 static int fsi_master_write(struct fsi_master
*master
, int link
,
1155 uint8_t slave_id
, uint32_t addr
, const void *val
, size_t size
)
1159 trace_fsi_master_write(master
, link
, slave_id
, addr
, size
, val
);
1161 rc
= fsi_check_access(addr
, size
);
1163 rc
= master
->write(master
, link
, slave_id
, addr
, val
, size
);
1165 trace_fsi_master_rw_result(master
, link
, slave_id
, addr
, size
,
1171 static int fsi_master_link_disable(struct fsi_master
*master
, int link
)
1173 if (master
->link_enable
)
1174 return master
->link_enable(master
, link
, false);
1179 static int fsi_master_link_enable(struct fsi_master
*master
, int link
)
1181 if (master
->link_enable
)
1182 return master
->link_enable(master
, link
, true);
1188 * Issue a break command on this link
1190 static int fsi_master_break(struct fsi_master
*master
, int link
)
1194 trace_fsi_master_break(master
, link
);
1196 if (master
->send_break
)
1197 rc
= master
->send_break(master
, link
);
1198 if (master
->link_config
)
1199 master
->link_config(master
, link
, 16, 16);
1204 static int fsi_master_scan(struct fsi_master
*master
)
1208 for (link
= 0; link
< master
->n_links
; link
++) {
1209 rc
= fsi_master_link_enable(master
, link
);
1211 dev_dbg(&master
->dev
,
1212 "enable link %d failed: %d\n", link
, rc
);
1215 rc
= fsi_master_break(master
, link
);
1217 fsi_master_link_disable(master
, link
);
1218 dev_dbg(&master
->dev
,
1219 "break to link %d failed: %d\n", link
, rc
);
1223 rc
= fsi_slave_init(master
, link
, 0);
1225 fsi_master_link_disable(master
, link
);
1231 static int fsi_slave_remove_device(struct device
*dev
, void *arg
)
1233 device_unregister(dev
);
1237 static int fsi_master_remove_slave(struct device
*dev
, void *arg
)
1239 struct fsi_slave
*slave
= to_fsi_slave(dev
);
1241 device_for_each_child(dev
, NULL
, fsi_slave_remove_device
);
1242 cdev_device_del(&slave
->cdev
, &slave
->dev
);
1247 static void fsi_master_unscan(struct fsi_master
*master
)
1249 device_for_each_child(&master
->dev
, NULL
, fsi_master_remove_slave
);
1252 int fsi_master_rescan(struct fsi_master
*master
)
1256 mutex_lock(&master
->scan_lock
);
1257 fsi_master_unscan(master
);
1258 rc
= fsi_master_scan(master
);
1259 mutex_unlock(&master
->scan_lock
);
1263 EXPORT_SYMBOL_GPL(fsi_master_rescan
);
1265 static ssize_t
master_rescan_store(struct device
*dev
,
1266 struct device_attribute
*attr
, const char *buf
, size_t count
)
1268 struct fsi_master
*master
= to_fsi_master(dev
);
1271 rc
= fsi_master_rescan(master
);
1278 static DEVICE_ATTR(rescan
, 0200, NULL
, master_rescan_store
);
1280 static ssize_t
master_break_store(struct device
*dev
,
1281 struct device_attribute
*attr
, const char *buf
, size_t count
)
1283 struct fsi_master
*master
= to_fsi_master(dev
);
1285 fsi_master_break(master
, 0);
1290 static DEVICE_ATTR(break, 0200, NULL
, master_break_store
);
1292 static struct attribute
*master_attrs
[] = {
1293 &dev_attr_break
.attr
,
1294 &dev_attr_rescan
.attr
,
1298 ATTRIBUTE_GROUPS(master
);
1300 static struct class fsi_master_class
= {
1301 .name
= "fsi-master",
1302 .dev_groups
= master_groups
,
1305 int fsi_master_register(struct fsi_master
*master
)
1308 struct device_node
*np
;
1310 mutex_init(&master
->scan_lock
);
1311 master
->idx
= ida_simple_get(&master_ida
, 0, INT_MAX
, GFP_KERNEL
);
1312 dev_set_name(&master
->dev
, "fsi%d", master
->idx
);
1313 master
->dev
.class = &fsi_master_class
;
1315 rc
= device_register(&master
->dev
);
1317 ida_simple_remove(&master_ida
, master
->idx
);
1321 np
= dev_of_node(&master
->dev
);
1322 if (!of_property_read_bool(np
, "no-scan-on-init")) {
1323 mutex_lock(&master
->scan_lock
);
1324 fsi_master_scan(master
);
1325 mutex_unlock(&master
->scan_lock
);
1330 EXPORT_SYMBOL_GPL(fsi_master_register
);
1332 void fsi_master_unregister(struct fsi_master
*master
)
1334 if (master
->idx
>= 0) {
1335 ida_simple_remove(&master_ida
, master
->idx
);
1339 mutex_lock(&master
->scan_lock
);
1340 fsi_master_unscan(master
);
1341 mutex_unlock(&master
->scan_lock
);
1342 device_unregister(&master
->dev
);
1344 EXPORT_SYMBOL_GPL(fsi_master_unregister
);
1346 /* FSI core & Linux bus type definitions */
1348 static int fsi_bus_match(struct device
*dev
, struct device_driver
*drv
)
1350 struct fsi_device
*fsi_dev
= to_fsi_dev(dev
);
1351 struct fsi_driver
*fsi_drv
= to_fsi_drv(drv
);
1352 const struct fsi_device_id
*id
;
1354 if (!fsi_drv
->id_table
)
1357 for (id
= fsi_drv
->id_table
; id
->engine_type
; id
++) {
1358 if (id
->engine_type
!= fsi_dev
->engine_type
)
1360 if (id
->version
== FSI_VERSION_ANY
||
1361 id
->version
== fsi_dev
->version
)
1368 int fsi_driver_register(struct fsi_driver
*fsi_drv
)
1372 if (!fsi_drv
->id_table
)
1375 return driver_register(&fsi_drv
->drv
);
1377 EXPORT_SYMBOL_GPL(fsi_driver_register
);
1379 void fsi_driver_unregister(struct fsi_driver
*fsi_drv
)
1381 driver_unregister(&fsi_drv
->drv
);
1383 EXPORT_SYMBOL_GPL(fsi_driver_unregister
);
1385 struct bus_type fsi_bus_type
= {
1387 .match
= fsi_bus_match
,
1389 EXPORT_SYMBOL_GPL(fsi_bus_type
);
1391 static int __init
fsi_init(void)
1395 rc
= alloc_chrdev_region(&fsi_base_dev
, 0, FSI_CHAR_MAX_DEVICES
, "fsi");
1398 rc
= bus_register(&fsi_bus_type
);
1402 rc
= class_register(&fsi_master_class
);
1409 bus_unregister(&fsi_bus_type
);
1411 unregister_chrdev_region(fsi_base_dev
, FSI_CHAR_MAX_DEVICES
);
1414 postcore_initcall(fsi_init
);
1416 static void fsi_exit(void)
1418 class_unregister(&fsi_master_class
);
1419 bus_unregister(&fsi_bus_type
);
1420 unregister_chrdev_region(fsi_base_dev
, FSI_CHAR_MAX_DEVICES
);
1421 ida_destroy(&fsi_minor_ida
);
1423 module_exit(fsi_exit
);
1424 module_param(discard_errors
, int, 0664);
1425 MODULE_LICENSE("GPL");
1426 MODULE_PARM_DESC(discard_errors
, "Don't invoke error handling on bus accesses");