platform/x86: Add Intel AtomISP2 dummy / power-management driver
[linux/fpc-iii.git] / drivers / fsi / fsi-master-hub.c
blobb3c1e9debcf2ec0b33600146dd336ee22a81dd54
1 /*
2 * FSI hub master driver
4 * Copyright (C) IBM Corporation 2016
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/delay.h>
17 #include <linux/fsi.h>
18 #include <linux/module.h>
19 #include <linux/of.h>
20 #include <linux/slab.h>
22 #include "fsi-master.h"
24 /* Control Registers */
25 #define FSI_MMODE 0x0 /* R/W: mode */
26 #define FSI_MDLYR 0x4 /* R/W: delay */
27 #define FSI_MCRSP 0x8 /* R/W: clock rate */
28 #define FSI_MENP0 0x10 /* R/W: enable */
29 #define FSI_MLEVP0 0x18 /* R: plug detect */
30 #define FSI_MSENP0 0x18 /* S: Set enable */
31 #define FSI_MCENP0 0x20 /* C: Clear enable */
32 #define FSI_MAEB 0x70 /* R: Error address */
33 #define FSI_MVER 0x74 /* R: master version/type */
34 #define FSI_MRESP0 0xd0 /* W: Port reset */
35 #define FSI_MESRB0 0x1d0 /* R: Master error status */
36 #define FSI_MRESB0 0x1d0 /* W: Reset bridge */
37 #define FSI_MECTRL 0x2e0 /* W: Error control */
39 /* MMODE: Mode control */
40 #define FSI_MMODE_EIP 0x80000000 /* Enable interrupt polling */
41 #define FSI_MMODE_ECRC 0x40000000 /* Enable error recovery */
42 #define FSI_MMODE_EPC 0x10000000 /* Enable parity checking */
43 #define FSI_MMODE_P8_TO_LSB 0x00000010 /* Timeout value LSB */
44 /* MSB=1, LSB=0 is 0.8 ms */
45 /* MSB=0, LSB=1 is 0.9 ms */
46 #define FSI_MMODE_CRS0SHFT 18 /* Clk rate selection 0 shift */
47 #define FSI_MMODE_CRS0MASK 0x3ff /* Clk rate selection 0 mask */
48 #define FSI_MMODE_CRS1SHFT 8 /* Clk rate selection 1 shift */
49 #define FSI_MMODE_CRS1MASK 0x3ff /* Clk rate selection 1 mask */
51 /* MRESB: Reset brindge */
52 #define FSI_MRESB_RST_GEN 0x80000000 /* General reset */
53 #define FSI_MRESB_RST_ERR 0x40000000 /* Error Reset */
55 /* MRESB: Reset port */
56 #define FSI_MRESP_RST_ALL_MASTER 0x20000000 /* Reset all FSI masters */
57 #define FSI_MRESP_RST_ALL_LINK 0x10000000 /* Reset all FSI port contr. */
58 #define FSI_MRESP_RST_MCR 0x08000000 /* Reset FSI master reg. */
59 #define FSI_MRESP_RST_PYE 0x04000000 /* Reset FSI parity error */
60 #define FSI_MRESP_RST_ALL 0xfc000000 /* Reset any error */
62 /* MECTRL: Error control */
63 #define FSI_MECTRL_EOAE 0x8000 /* Enable machine check when */
64 /* master 0 in error */
65 #define FSI_MECTRL_P8_AUTO_TERM 0x4000 /* Auto terminate */
67 #define FSI_ENGID_HUB_MASTER 0x1c
68 #define FSI_HUB_LINK_OFFSET 0x80000
69 #define FSI_HUB_LINK_SIZE 0x80000
70 #define FSI_HUB_MASTER_MAX_LINKS 8
72 #define FSI_LINK_ENABLE_SETUP_TIME 10 /* in mS */
75 * FSI hub master support
77 * A hub master increases the number of potential target devices that the
78 * primary FSI master can access. For each link a primary master supports,
79 * each of those links can in turn be chained to a hub master with multiple
80 * links of its own.
82 * The hub is controlled by a set of control registers exposed as a regular fsi
83 * device (the hub->upstream device), and provides access to the downstream FSI
84 * bus as through an address range on the slave itself (->addr and ->size).
86 * [This differs from "cascaded" masters, which expose the entire downstream
87 * bus entirely through the fsi device address range, and so have a smaller
88 * accessible address space.]
90 struct fsi_master_hub {
91 struct fsi_master master;
92 struct fsi_device *upstream;
93 uint32_t addr, size; /* slave-relative addr of */
94 /* master address space */
97 #define to_fsi_master_hub(m) container_of(m, struct fsi_master_hub, master)
99 static int hub_master_read(struct fsi_master *master, int link,
100 uint8_t id, uint32_t addr, void *val, size_t size)
102 struct fsi_master_hub *hub = to_fsi_master_hub(master);
104 if (id != 0)
105 return -EINVAL;
107 addr += hub->addr + (link * FSI_HUB_LINK_SIZE);
108 return fsi_slave_read(hub->upstream->slave, addr, val, size);
111 static int hub_master_write(struct fsi_master *master, int link,
112 uint8_t id, uint32_t addr, const void *val, size_t size)
114 struct fsi_master_hub *hub = to_fsi_master_hub(master);
116 if (id != 0)
117 return -EINVAL;
119 addr += hub->addr + (link * FSI_HUB_LINK_SIZE);
120 return fsi_slave_write(hub->upstream->slave, addr, val, size);
123 static int hub_master_break(struct fsi_master *master, int link)
125 uint32_t addr;
126 __be32 cmd;
128 addr = 0x4;
129 cmd = cpu_to_be32(0xc0de0000);
131 return hub_master_write(master, link, 0, addr, &cmd, sizeof(cmd));
134 static int hub_master_link_enable(struct fsi_master *master, int link)
136 struct fsi_master_hub *hub = to_fsi_master_hub(master);
137 int idx, bit;
138 __be32 reg;
139 int rc;
141 idx = link / 32;
142 bit = link % 32;
144 reg = cpu_to_be32(0x80000000 >> bit);
146 rc = fsi_device_write(hub->upstream, FSI_MSENP0 + (4 * idx), &reg, 4);
148 mdelay(FSI_LINK_ENABLE_SETUP_TIME);
150 fsi_device_read(hub->upstream, FSI_MENP0 + (4 * idx), &reg, 4);
152 return rc;
155 static void hub_master_release(struct device *dev)
157 struct fsi_master_hub *hub = to_fsi_master_hub(dev_to_fsi_master(dev));
159 kfree(hub);
162 /* mmode encoders */
163 static inline u32 fsi_mmode_crs0(u32 x)
165 return (x & FSI_MMODE_CRS0MASK) << FSI_MMODE_CRS0SHFT;
168 static inline u32 fsi_mmode_crs1(u32 x)
170 return (x & FSI_MMODE_CRS1MASK) << FSI_MMODE_CRS1SHFT;
173 static int hub_master_init(struct fsi_master_hub *hub)
175 struct fsi_device *dev = hub->upstream;
176 __be32 reg;
177 int rc;
179 reg = cpu_to_be32(FSI_MRESP_RST_ALL_MASTER | FSI_MRESP_RST_ALL_LINK
180 | FSI_MRESP_RST_MCR | FSI_MRESP_RST_PYE);
181 rc = fsi_device_write(dev, FSI_MRESP0, &reg, sizeof(reg));
182 if (rc)
183 return rc;
185 /* Initialize the MFSI (hub master) engine */
186 reg = cpu_to_be32(FSI_MRESP_RST_ALL_MASTER | FSI_MRESP_RST_ALL_LINK
187 | FSI_MRESP_RST_MCR | FSI_MRESP_RST_PYE);
188 rc = fsi_device_write(dev, FSI_MRESP0, &reg, sizeof(reg));
189 if (rc)
190 return rc;
192 reg = cpu_to_be32(FSI_MECTRL_EOAE | FSI_MECTRL_P8_AUTO_TERM);
193 rc = fsi_device_write(dev, FSI_MECTRL, &reg, sizeof(reg));
194 if (rc)
195 return rc;
197 reg = cpu_to_be32(FSI_MMODE_EIP | FSI_MMODE_ECRC | FSI_MMODE_EPC
198 | fsi_mmode_crs0(1) | fsi_mmode_crs1(1)
199 | FSI_MMODE_P8_TO_LSB);
200 rc = fsi_device_write(dev, FSI_MMODE, &reg, sizeof(reg));
201 if (rc)
202 return rc;
204 reg = cpu_to_be32(0xffff0000);
205 rc = fsi_device_write(dev, FSI_MDLYR, &reg, sizeof(reg));
206 if (rc)
207 return rc;
209 reg = cpu_to_be32(~0);
210 rc = fsi_device_write(dev, FSI_MSENP0, &reg, sizeof(reg));
211 if (rc)
212 return rc;
214 /* Leave enabled long enough for master logic to set up */
215 mdelay(FSI_LINK_ENABLE_SETUP_TIME);
217 rc = fsi_device_write(dev, FSI_MCENP0, &reg, sizeof(reg));
218 if (rc)
219 return rc;
221 rc = fsi_device_read(dev, FSI_MAEB, &reg, sizeof(reg));
222 if (rc)
223 return rc;
225 reg = cpu_to_be32(FSI_MRESP_RST_ALL_MASTER | FSI_MRESP_RST_ALL_LINK);
226 rc = fsi_device_write(dev, FSI_MRESP0, &reg, sizeof(reg));
227 if (rc)
228 return rc;
230 rc = fsi_device_read(dev, FSI_MLEVP0, &reg, sizeof(reg));
231 if (rc)
232 return rc;
234 /* Reset the master bridge */
235 reg = cpu_to_be32(FSI_MRESB_RST_GEN);
236 rc = fsi_device_write(dev, FSI_MRESB0, &reg, sizeof(reg));
237 if (rc)
238 return rc;
240 reg = cpu_to_be32(FSI_MRESB_RST_ERR);
241 return fsi_device_write(dev, FSI_MRESB0, &reg, sizeof(reg));
244 static int hub_master_probe(struct device *dev)
246 struct fsi_device *fsi_dev = to_fsi_dev(dev);
247 struct fsi_master_hub *hub;
248 uint32_t reg, links;
249 __be32 __reg;
250 int rc;
252 rc = fsi_device_read(fsi_dev, FSI_MVER, &__reg, sizeof(__reg));
253 if (rc)
254 return rc;
256 reg = be32_to_cpu(__reg);
257 links = (reg >> 8) & 0xff;
258 dev_dbg(dev, "hub version %08x (%d links)\n", reg, links);
260 rc = fsi_slave_claim_range(fsi_dev->slave, FSI_HUB_LINK_OFFSET,
261 FSI_HUB_LINK_SIZE * links);
262 if (rc) {
263 dev_err(dev, "can't claim slave address range for links");
264 return rc;
267 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
268 if (!hub) {
269 rc = -ENOMEM;
270 goto err_release;
273 hub->addr = FSI_HUB_LINK_OFFSET;
274 hub->size = FSI_HUB_LINK_SIZE * links;
275 hub->upstream = fsi_dev;
277 hub->master.dev.parent = dev;
278 hub->master.dev.release = hub_master_release;
279 hub->master.dev.of_node = of_node_get(dev_of_node(dev));
281 hub->master.n_links = links;
282 hub->master.read = hub_master_read;
283 hub->master.write = hub_master_write;
284 hub->master.send_break = hub_master_break;
285 hub->master.link_enable = hub_master_link_enable;
287 dev_set_drvdata(dev, hub);
289 hub_master_init(hub);
291 rc = fsi_master_register(&hub->master);
292 if (rc)
293 goto err_release;
295 /* At this point, fsi_master_register performs the device_initialize(),
296 * and holds the sole reference on master.dev. This means the device
297 * will be freed (via ->release) during any subsequent call to
298 * fsi_master_unregister. We add our own reference to it here, so we
299 * can perform cleanup (in _remove()) without it being freed before
300 * we're ready.
302 get_device(&hub->master.dev);
303 return 0;
305 err_release:
306 fsi_slave_release_range(fsi_dev->slave, FSI_HUB_LINK_OFFSET,
307 FSI_HUB_LINK_SIZE * links);
308 return rc;
311 static int hub_master_remove(struct device *dev)
313 struct fsi_master_hub *hub = dev_get_drvdata(dev);
315 fsi_master_unregister(&hub->master);
316 fsi_slave_release_range(hub->upstream->slave, hub->addr, hub->size);
317 of_node_put(hub->master.dev.of_node);
320 * master.dev will likely be ->release()ed after this, which free()s
321 * the hub
323 put_device(&hub->master.dev);
325 return 0;
328 static struct fsi_device_id hub_master_ids[] = {
330 .engine_type = FSI_ENGID_HUB_MASTER,
331 .version = FSI_VERSION_ANY,
333 { 0 }
336 static struct fsi_driver hub_master_driver = {
337 .id_table = hub_master_ids,
338 .drv = {
339 .name = "fsi-master-hub",
340 .bus = &fsi_bus_type,
341 .probe = hub_master_probe,
342 .remove = hub_master_remove,
346 module_fsi_driver(hub_master_driver);
347 MODULE_LICENSE("GPL");