1 // SPDX-License-Identifier: GPL-2.0-only
3 * FSI hub master driver
5 * Copyright (C) IBM Corporation 2016
8 #include <linux/delay.h>
10 #include <linux/module.h>
12 #include <linux/slab.h>
14 #include "fsi-master.h"
16 /* Control Registers */
17 #define FSI_MMODE 0x0 /* R/W: mode */
18 #define FSI_MDLYR 0x4 /* R/W: delay */
19 #define FSI_MCRSP 0x8 /* R/W: clock rate */
20 #define FSI_MENP0 0x10 /* R/W: enable */
21 #define FSI_MLEVP0 0x18 /* R: plug detect */
22 #define FSI_MSENP0 0x18 /* S: Set enable */
23 #define FSI_MCENP0 0x20 /* C: Clear enable */
24 #define FSI_MAEB 0x70 /* R: Error address */
25 #define FSI_MVER 0x74 /* R: master version/type */
26 #define FSI_MRESP0 0xd0 /* W: Port reset */
27 #define FSI_MESRB0 0x1d0 /* R: Master error status */
28 #define FSI_MRESB0 0x1d0 /* W: Reset bridge */
29 #define FSI_MECTRL 0x2e0 /* W: Error control */
31 /* MMODE: Mode control */
32 #define FSI_MMODE_EIP 0x80000000 /* Enable interrupt polling */
33 #define FSI_MMODE_ECRC 0x40000000 /* Enable error recovery */
34 #define FSI_MMODE_EPC 0x10000000 /* Enable parity checking */
35 #define FSI_MMODE_P8_TO_LSB 0x00000010 /* Timeout value LSB */
36 /* MSB=1, LSB=0 is 0.8 ms */
37 /* MSB=0, LSB=1 is 0.9 ms */
38 #define FSI_MMODE_CRS0SHFT 18 /* Clk rate selection 0 shift */
39 #define FSI_MMODE_CRS0MASK 0x3ff /* Clk rate selection 0 mask */
40 #define FSI_MMODE_CRS1SHFT 8 /* Clk rate selection 1 shift */
41 #define FSI_MMODE_CRS1MASK 0x3ff /* Clk rate selection 1 mask */
43 /* MRESB: Reset brindge */
44 #define FSI_MRESB_RST_GEN 0x80000000 /* General reset */
45 #define FSI_MRESB_RST_ERR 0x40000000 /* Error Reset */
47 /* MRESB: Reset port */
48 #define FSI_MRESP_RST_ALL_MASTER 0x20000000 /* Reset all FSI masters */
49 #define FSI_MRESP_RST_ALL_LINK 0x10000000 /* Reset all FSI port contr. */
50 #define FSI_MRESP_RST_MCR 0x08000000 /* Reset FSI master reg. */
51 #define FSI_MRESP_RST_PYE 0x04000000 /* Reset FSI parity error */
52 #define FSI_MRESP_RST_ALL 0xfc000000 /* Reset any error */
54 /* MECTRL: Error control */
55 #define FSI_MECTRL_EOAE 0x8000 /* Enable machine check when */
56 /* master 0 in error */
57 #define FSI_MECTRL_P8_AUTO_TERM 0x4000 /* Auto terminate */
59 #define FSI_ENGID_HUB_MASTER 0x1c
60 #define FSI_HUB_LINK_OFFSET 0x80000
61 #define FSI_HUB_LINK_SIZE 0x80000
62 #define FSI_HUB_MASTER_MAX_LINKS 8
64 #define FSI_LINK_ENABLE_SETUP_TIME 10 /* in mS */
67 * FSI hub master support
69 * A hub master increases the number of potential target devices that the
70 * primary FSI master can access. For each link a primary master supports,
71 * each of those links can in turn be chained to a hub master with multiple
74 * The hub is controlled by a set of control registers exposed as a regular fsi
75 * device (the hub->upstream device), and provides access to the downstream FSI
76 * bus as through an address range on the slave itself (->addr and ->size).
78 * [This differs from "cascaded" masters, which expose the entire downstream
79 * bus entirely through the fsi device address range, and so have a smaller
80 * accessible address space.]
82 struct fsi_master_hub
{
83 struct fsi_master master
;
84 struct fsi_device
*upstream
;
85 uint32_t addr
, size
; /* slave-relative addr of */
86 /* master address space */
89 #define to_fsi_master_hub(m) container_of(m, struct fsi_master_hub, master)
91 static int hub_master_read(struct fsi_master
*master
, int link
,
92 uint8_t id
, uint32_t addr
, void *val
, size_t size
)
94 struct fsi_master_hub
*hub
= to_fsi_master_hub(master
);
99 addr
+= hub
->addr
+ (link
* FSI_HUB_LINK_SIZE
);
100 return fsi_slave_read(hub
->upstream
->slave
, addr
, val
, size
);
103 static int hub_master_write(struct fsi_master
*master
, int link
,
104 uint8_t id
, uint32_t addr
, const void *val
, size_t size
)
106 struct fsi_master_hub
*hub
= to_fsi_master_hub(master
);
111 addr
+= hub
->addr
+ (link
* FSI_HUB_LINK_SIZE
);
112 return fsi_slave_write(hub
->upstream
->slave
, addr
, val
, size
);
115 static int hub_master_break(struct fsi_master
*master
, int link
)
121 cmd
= cpu_to_be32(0xc0de0000);
123 return hub_master_write(master
, link
, 0, addr
, &cmd
, sizeof(cmd
));
126 static int hub_master_link_enable(struct fsi_master
*master
, int link
)
128 struct fsi_master_hub
*hub
= to_fsi_master_hub(master
);
136 reg
= cpu_to_be32(0x80000000 >> bit
);
138 rc
= fsi_device_write(hub
->upstream
, FSI_MSENP0
+ (4 * idx
), ®
, 4);
140 mdelay(FSI_LINK_ENABLE_SETUP_TIME
);
142 fsi_device_read(hub
->upstream
, FSI_MENP0
+ (4 * idx
), ®
, 4);
147 static void hub_master_release(struct device
*dev
)
149 struct fsi_master_hub
*hub
= to_fsi_master_hub(dev_to_fsi_master(dev
));
155 static inline u32
fsi_mmode_crs0(u32 x
)
157 return (x
& FSI_MMODE_CRS0MASK
) << FSI_MMODE_CRS0SHFT
;
160 static inline u32
fsi_mmode_crs1(u32 x
)
162 return (x
& FSI_MMODE_CRS1MASK
) << FSI_MMODE_CRS1SHFT
;
165 static int hub_master_init(struct fsi_master_hub
*hub
)
167 struct fsi_device
*dev
= hub
->upstream
;
171 reg
= cpu_to_be32(FSI_MRESP_RST_ALL_MASTER
| FSI_MRESP_RST_ALL_LINK
172 | FSI_MRESP_RST_MCR
| FSI_MRESP_RST_PYE
);
173 rc
= fsi_device_write(dev
, FSI_MRESP0
, ®
, sizeof(reg
));
177 /* Initialize the MFSI (hub master) engine */
178 reg
= cpu_to_be32(FSI_MRESP_RST_ALL_MASTER
| FSI_MRESP_RST_ALL_LINK
179 | FSI_MRESP_RST_MCR
| FSI_MRESP_RST_PYE
);
180 rc
= fsi_device_write(dev
, FSI_MRESP0
, ®
, sizeof(reg
));
184 reg
= cpu_to_be32(FSI_MECTRL_EOAE
| FSI_MECTRL_P8_AUTO_TERM
);
185 rc
= fsi_device_write(dev
, FSI_MECTRL
, ®
, sizeof(reg
));
189 reg
= cpu_to_be32(FSI_MMODE_EIP
| FSI_MMODE_ECRC
| FSI_MMODE_EPC
190 | fsi_mmode_crs0(1) | fsi_mmode_crs1(1)
191 | FSI_MMODE_P8_TO_LSB
);
192 rc
= fsi_device_write(dev
, FSI_MMODE
, ®
, sizeof(reg
));
196 reg
= cpu_to_be32(0xffff0000);
197 rc
= fsi_device_write(dev
, FSI_MDLYR
, ®
, sizeof(reg
));
201 reg
= cpu_to_be32(~0);
202 rc
= fsi_device_write(dev
, FSI_MSENP0
, ®
, sizeof(reg
));
206 /* Leave enabled long enough for master logic to set up */
207 mdelay(FSI_LINK_ENABLE_SETUP_TIME
);
209 rc
= fsi_device_write(dev
, FSI_MCENP0
, ®
, sizeof(reg
));
213 rc
= fsi_device_read(dev
, FSI_MAEB
, ®
, sizeof(reg
));
217 reg
= cpu_to_be32(FSI_MRESP_RST_ALL_MASTER
| FSI_MRESP_RST_ALL_LINK
);
218 rc
= fsi_device_write(dev
, FSI_MRESP0
, ®
, sizeof(reg
));
222 rc
= fsi_device_read(dev
, FSI_MLEVP0
, ®
, sizeof(reg
));
226 /* Reset the master bridge */
227 reg
= cpu_to_be32(FSI_MRESB_RST_GEN
);
228 rc
= fsi_device_write(dev
, FSI_MRESB0
, ®
, sizeof(reg
));
232 reg
= cpu_to_be32(FSI_MRESB_RST_ERR
);
233 return fsi_device_write(dev
, FSI_MRESB0
, ®
, sizeof(reg
));
236 static int hub_master_probe(struct device
*dev
)
238 struct fsi_device
*fsi_dev
= to_fsi_dev(dev
);
239 struct fsi_master_hub
*hub
;
244 rc
= fsi_device_read(fsi_dev
, FSI_MVER
, &__reg
, sizeof(__reg
));
248 reg
= be32_to_cpu(__reg
);
249 links
= (reg
>> 8) & 0xff;
250 dev_dbg(dev
, "hub version %08x (%d links)\n", reg
, links
);
252 rc
= fsi_slave_claim_range(fsi_dev
->slave
, FSI_HUB_LINK_OFFSET
,
253 FSI_HUB_LINK_SIZE
* links
);
255 dev_err(dev
, "can't claim slave address range for links");
259 hub
= kzalloc(sizeof(*hub
), GFP_KERNEL
);
265 hub
->addr
= FSI_HUB_LINK_OFFSET
;
266 hub
->size
= FSI_HUB_LINK_SIZE
* links
;
267 hub
->upstream
= fsi_dev
;
269 hub
->master
.dev
.parent
= dev
;
270 hub
->master
.dev
.release
= hub_master_release
;
271 hub
->master
.dev
.of_node
= of_node_get(dev_of_node(dev
));
273 hub
->master
.n_links
= links
;
274 hub
->master
.read
= hub_master_read
;
275 hub
->master
.write
= hub_master_write
;
276 hub
->master
.send_break
= hub_master_break
;
277 hub
->master
.link_enable
= hub_master_link_enable
;
279 dev_set_drvdata(dev
, hub
);
281 hub_master_init(hub
);
283 rc
= fsi_master_register(&hub
->master
);
287 /* At this point, fsi_master_register performs the device_initialize(),
288 * and holds the sole reference on master.dev. This means the device
289 * will be freed (via ->release) during any subsequent call to
290 * fsi_master_unregister. We add our own reference to it here, so we
291 * can perform cleanup (in _remove()) without it being freed before
294 get_device(&hub
->master
.dev
);
298 fsi_slave_release_range(fsi_dev
->slave
, FSI_HUB_LINK_OFFSET
,
299 FSI_HUB_LINK_SIZE
* links
);
303 static int hub_master_remove(struct device
*dev
)
305 struct fsi_master_hub
*hub
= dev_get_drvdata(dev
);
307 fsi_master_unregister(&hub
->master
);
308 fsi_slave_release_range(hub
->upstream
->slave
, hub
->addr
, hub
->size
);
309 of_node_put(hub
->master
.dev
.of_node
);
312 * master.dev will likely be ->release()ed after this, which free()s
315 put_device(&hub
->master
.dev
);
320 static struct fsi_device_id hub_master_ids
[] = {
322 .engine_type
= FSI_ENGID_HUB_MASTER
,
323 .version
= FSI_VERSION_ANY
,
328 static struct fsi_driver hub_master_driver
= {
329 .id_table
= hub_master_ids
,
331 .name
= "fsi-master-hub",
332 .bus
= &fsi_bus_type
,
333 .probe
= hub_master_probe
,
334 .remove
= hub_master_remove
,
338 module_fsi_driver(hub_master_driver
);
339 MODULE_LICENSE("GPL");