blob: 061b5cf1d4511c89d63a53991477450e7c36d6d7 [file] [log] [blame]
Thomas Petazzonifddddb52013-03-21 17:59:14 +01001/*
2 * Address map functions for Marvell EBU SoCs (Kirkwood, Armada
3 * 370/XP, Dove, Orion5x and MV78xx0)
4 *
5 * This file is licensed under the terms of the GNU General Public
6 * License version 2. This program is licensed "as is" without any
7 * warranty of any kind, whether express or implied.
8 *
9 * The Marvell EBU SoCs have a configurable physical address space:
10 * the physical address at which certain devices (PCIe, NOR, NAND,
11 * etc.) sit can be configured. The configuration takes place through
12 * two sets of registers:
13 *
14 * - One to configure the access of the CPU to the devices. Depending
15 * on the families, there are between 8 and 20 configurable windows,
16 * each can be use to create a physical memory window that maps to a
17 * specific device. Devices are identified by a tuple (target,
18 * attribute).
19 *
20 * - One to configure the access to the CPU to the SDRAM. There are
21 * either 2 (for Dove) or 4 (for other families) windows to map the
22 * SDRAM into the physical address space.
23 *
24 * This driver:
25 *
26 * - Reads out the SDRAM address decoding windows at initialization
27 * time, and fills the mvebu_mbus_dram_info structure with these
28 * informations. The exported function mv_mbus_dram_info() allow
29 * device drivers to get those informations related to the SDRAM
30 * address decoding windows. This is because devices also have their
31 * own windows (configured through registers that are part of each
32 * device register space), and therefore the drivers for Marvell
33 * devices have to configure those device -> SDRAM windows to ensure
34 * that DMA works properly.
35 *
36 * - Provides an API for platform code or device drivers to
37 * dynamically add or remove address decoding windows for the CPU ->
Thomas Petazzoni6275afe2013-07-26 10:17:52 -030038 * device accesses. This API is mvebu_mbus_add_window_by_id(),
39 * mvebu_mbus_add_window_remap_by_id() and
40 * mvebu_mbus_del_window().
Thomas Petazzonifddddb52013-03-21 17:59:14 +010041 *
42 * - Provides a debugfs interface in /sys/kernel/debug/mvebu-mbus/ to
43 * see the list of CPU -> SDRAM windows and their configuration
44 * (file 'sdram') and the list of CPU -> devices windows and their
45 * configuration (file 'devices').
46 */
47
Ezequiel Garciab15d0b52013-06-07 13:47:38 -030048#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
Thomas Petazzonifddddb52013-03-21 17:59:14 +010050#include <linux/kernel.h>
51#include <linux/module.h>
52#include <linux/init.h>
53#include <linux/mbus.h>
54#include <linux/io.h>
55#include <linux/ioport.h>
56#include <linux/of.h>
57#include <linux/of_address.h>
58#include <linux/debugfs.h>
Jason Gunthorpe09752a12014-04-18 14:19:51 +020059#include <linux/log2.h>
Thomas Petazzonia0e89c02014-11-21 17:00:03 +010060#include <linux/syscore_ops.h>
Thomas Petazzonifddddb52013-03-21 17:59:14 +010061
62/*
63 * DDR target is the same on all platforms.
64 */
65#define TARGET_DDR 0
66
67/*
68 * CPU Address Decode Windows registers
69 */
70#define WIN_CTRL_OFF 0x0000
71#define WIN_CTRL_ENABLE BIT(0)
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +010072#define WIN_CTRL_SYNCBARRIER BIT(1)
Thomas Petazzonifddddb52013-03-21 17:59:14 +010073#define WIN_CTRL_TGT_MASK 0xf0
74#define WIN_CTRL_TGT_SHIFT 4
75#define WIN_CTRL_ATTR_MASK 0xff00
76#define WIN_CTRL_ATTR_SHIFT 8
77#define WIN_CTRL_SIZE_MASK 0xffff0000
78#define WIN_CTRL_SIZE_SHIFT 16
79#define WIN_BASE_OFF 0x0004
80#define WIN_BASE_LOW 0xffff0000
81#define WIN_BASE_HIGH 0xf
82#define WIN_REMAP_LO_OFF 0x0008
83#define WIN_REMAP_LOW 0xffff0000
84#define WIN_REMAP_HI_OFF 0x000c
85
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +010086#define UNIT_SYNC_BARRIER_OFF 0x84
87#define UNIT_SYNC_BARRIER_ALL 0xFFFF
88
Thomas Petazzonifddddb52013-03-21 17:59:14 +010089#define ATTR_HW_COHERENCY (0x1 << 4)
90
91#define DDR_BASE_CS_OFF(n) (0x0000 + ((n) << 3))
92#define DDR_BASE_CS_HIGH_MASK 0xf
93#define DDR_BASE_CS_LOW_MASK 0xff000000
94#define DDR_SIZE_CS_OFF(n) (0x0004 + ((n) << 3))
95#define DDR_SIZE_ENABLED BIT(0)
96#define DDR_SIZE_CS_MASK 0x1c
97#define DDR_SIZE_CS_SHIFT 2
98#define DDR_SIZE_MASK 0xff000000
99
100#define DOVE_DDR_BASE_CS_OFF(n) ((n) << 4)
101
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100102/* Relative to mbusbridge_base */
103#define MBUS_BRIDGE_CTRL_OFF 0x0
104#define MBUS_BRIDGE_BASE_OFF 0x4
105
106/* Maximum number of windows, for all known platforms */
107#define MBUS_WINS_MAX 20
108
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100109struct mvebu_mbus_state;
110
111struct mvebu_mbus_soc_data {
112 unsigned int num_wins;
113 unsigned int num_remappable_wins;
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100114 bool has_mbus_bridge;
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100115 unsigned int (*win_cfg_offset)(const int win);
116 void (*setup_cpu_target)(struct mvebu_mbus_state *s);
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100117 int (*save_cpu_target)(struct mvebu_mbus_state *s,
118 u32 *store_addr);
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100119 int (*show_cpu_target)(struct mvebu_mbus_state *s,
120 struct seq_file *seq, void *v);
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100121};
122
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100123/*
124 * Used to store the state of one MBus window accross suspend/resume.
125 */
126struct mvebu_mbus_win_data {
127 u32 ctrl;
128 u32 base;
129 u32 remap_lo;
130 u32 remap_hi;
131};
132
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100133struct mvebu_mbus_state {
134 void __iomem *mbuswins_base;
135 void __iomem *sdramwins_base;
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100136 void __iomem *mbusbridge_base;
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100137 phys_addr_t sdramwins_phys_base;
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100138 struct dentry *debugfs_root;
139 struct dentry *debugfs_sdram;
140 struct dentry *debugfs_devs;
Ezequiel Garcia79d94682013-07-26 10:17:47 -0300141 struct resource pcie_mem_aperture;
142 struct resource pcie_io_aperture;
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100143 const struct mvebu_mbus_soc_data *soc;
144 int hw_io_coherency;
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100145
146 /* Used during suspend/resume */
147 u32 mbus_bridge_ctrl;
148 u32 mbus_bridge_base;
149 struct mvebu_mbus_win_data wins[MBUS_WINS_MAX];
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100150};
151
152static struct mvebu_mbus_state mbus_state;
153
154static struct mbus_dram_target_info mvebu_mbus_dram_info;
155const struct mbus_dram_target_info *mv_mbus_dram_info(void)
156{
157 return &mvebu_mbus_dram_info;
158}
159EXPORT_SYMBOL_GPL(mv_mbus_dram_info);
160
161/*
162 * Functions to manipulate the address decoding windows
163 */
164
165static void mvebu_mbus_read_window(struct mvebu_mbus_state *mbus,
166 int win, int *enabled, u64 *base,
167 u32 *size, u8 *target, u8 *attr,
168 u64 *remap)
169{
170 void __iomem *addr = mbus->mbuswins_base +
171 mbus->soc->win_cfg_offset(win);
172 u32 basereg = readl(addr + WIN_BASE_OFF);
173 u32 ctrlreg = readl(addr + WIN_CTRL_OFF);
174
175 if (!(ctrlreg & WIN_CTRL_ENABLE)) {
176 *enabled = 0;
177 return;
178 }
179
180 *enabled = 1;
181 *base = ((u64)basereg & WIN_BASE_HIGH) << 32;
182 *base |= (basereg & WIN_BASE_LOW);
183 *size = (ctrlreg | ~WIN_CTRL_SIZE_MASK) + 1;
184
185 if (target)
186 *target = (ctrlreg & WIN_CTRL_TGT_MASK) >> WIN_CTRL_TGT_SHIFT;
187
188 if (attr)
189 *attr = (ctrlreg & WIN_CTRL_ATTR_MASK) >> WIN_CTRL_ATTR_SHIFT;
190
191 if (remap) {
192 if (win < mbus->soc->num_remappable_wins) {
193 u32 remap_low = readl(addr + WIN_REMAP_LO_OFF);
194 u32 remap_hi = readl(addr + WIN_REMAP_HI_OFF);
195 *remap = ((u64)remap_hi << 32) | remap_low;
196 } else
197 *remap = 0;
198 }
199}
200
201static void mvebu_mbus_disable_window(struct mvebu_mbus_state *mbus,
202 int win)
203{
204 void __iomem *addr;
205
206 addr = mbus->mbuswins_base + mbus->soc->win_cfg_offset(win);
207
208 writel(0, addr + WIN_BASE_OFF);
209 writel(0, addr + WIN_CTRL_OFF);
210 if (win < mbus->soc->num_remappable_wins) {
211 writel(0, addr + WIN_REMAP_LO_OFF);
212 writel(0, addr + WIN_REMAP_HI_OFF);
213 }
214}
215
216/* Checks whether the given window number is available */
Andrew Lunn38bdf452015-01-18 09:46:10 -0600217
218/* On Armada XP, 375 and 38x the MBus window 13 has the remap
219 * capability, like windows 0 to 7. However, the mvebu-mbus driver
220 * isn't currently taking into account this special case, which means
221 * that when window 13 is actually used, the remap registers are left
222 * to 0, making the device using this MBus window unavailable. The
223 * quick fix for stable is to not use window 13. A follow up patch
224 * will correctly handle this window.
225*/
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100226static int mvebu_mbus_window_is_free(struct mvebu_mbus_state *mbus,
227 const int win)
228{
229 void __iomem *addr = mbus->mbuswins_base +
230 mbus->soc->win_cfg_offset(win);
231 u32 ctrl = readl(addr + WIN_CTRL_OFF);
Andrew Lunn38bdf452015-01-18 09:46:10 -0600232
233 if (win == 13)
234 return false;
235
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100236 return !(ctrl & WIN_CTRL_ENABLE);
237}
238
239/*
240 * Checks whether the given (base, base+size) area doesn't overlap an
241 * existing region
242 */
243static int mvebu_mbus_window_conflicts(struct mvebu_mbus_state *mbus,
244 phys_addr_t base, size_t size,
245 u8 target, u8 attr)
246{
247 u64 end = (u64)base + size;
248 int win;
249
250 for (win = 0; win < mbus->soc->num_wins; win++) {
251 u64 wbase, wend;
252 u32 wsize;
253 u8 wtarget, wattr;
254 int enabled;
255
256 mvebu_mbus_read_window(mbus, win,
257 &enabled, &wbase, &wsize,
258 &wtarget, &wattr, NULL);
259
260 if (!enabled)
261 continue;
262
263 wend = wbase + wsize;
264
265 /*
266 * Check if the current window overlaps with the
267 * proposed physical range
268 */
269 if ((u64)base < wend && end > wbase)
270 return 0;
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100271 }
272
273 return 1;
274}
275
276static int mvebu_mbus_find_window(struct mvebu_mbus_state *mbus,
277 phys_addr_t base, size_t size)
278{
279 int win;
280
281 for (win = 0; win < mbus->soc->num_wins; win++) {
282 u64 wbase;
283 u32 wsize;
284 int enabled;
285
286 mvebu_mbus_read_window(mbus, win,
287 &enabled, &wbase, &wsize,
288 NULL, NULL, NULL);
289
290 if (!enabled)
291 continue;
292
293 if (base == wbase && size == wsize)
294 return win;
295 }
296
297 return -ENODEV;
298}
299
300static int mvebu_mbus_setup_window(struct mvebu_mbus_state *mbus,
301 int win, phys_addr_t base, size_t size,
302 phys_addr_t remap, u8 target,
303 u8 attr)
304{
305 void __iomem *addr = mbus->mbuswins_base +
306 mbus->soc->win_cfg_offset(win);
307 u32 ctrl, remap_addr;
308
Jason Gunthorpe09752a12014-04-18 14:19:51 +0200309 if (!is_power_of_2(size)) {
310 WARN(true, "Invalid MBus window size: 0x%zx\n", size);
311 return -EINVAL;
312 }
313
314 if ((base & (phys_addr_t)(size - 1)) != 0) {
315 WARN(true, "Invalid MBus base/size: %pa len 0x%zx\n", &base,
316 size);
317 return -EINVAL;
318 }
319
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100320 ctrl = ((size - 1) & WIN_CTRL_SIZE_MASK) |
321 (attr << WIN_CTRL_ATTR_SHIFT) |
322 (target << WIN_CTRL_TGT_SHIFT) |
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +0100323 WIN_CTRL_SYNCBARRIER |
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100324 WIN_CTRL_ENABLE;
325
326 writel(base & WIN_BASE_LOW, addr + WIN_BASE_OFF);
327 writel(ctrl, addr + WIN_CTRL_OFF);
328 if (win < mbus->soc->num_remappable_wins) {
329 if (remap == MVEBU_MBUS_NO_REMAP)
330 remap_addr = base;
331 else
332 remap_addr = remap;
333 writel(remap_addr & WIN_REMAP_LOW, addr + WIN_REMAP_LO_OFF);
334 writel(0, addr + WIN_REMAP_HI_OFF);
335 }
336
337 return 0;
338}
339
340static int mvebu_mbus_alloc_window(struct mvebu_mbus_state *mbus,
341 phys_addr_t base, size_t size,
342 phys_addr_t remap, u8 target,
343 u8 attr)
344{
345 int win;
346
347 if (remap == MVEBU_MBUS_NO_REMAP) {
348 for (win = mbus->soc->num_remappable_wins;
349 win < mbus->soc->num_wins; win++)
350 if (mvebu_mbus_window_is_free(mbus, win))
351 return mvebu_mbus_setup_window(mbus, win, base,
352 size, remap,
353 target, attr);
354 }
355
356
357 for (win = 0; win < mbus->soc->num_wins; win++)
358 if (mvebu_mbus_window_is_free(mbus, win))
359 return mvebu_mbus_setup_window(mbus, win, base, size,
360 remap, target, attr);
361
362 return -ENOMEM;
363}
364
365/*
366 * Debugfs debugging
367 */
368
369/* Common function used for Dove, Kirkwood, Armada 370/XP and Orion 5x */
370static int mvebu_sdram_debug_show_orion(struct mvebu_mbus_state *mbus,
371 struct seq_file *seq, void *v)
372{
373 int i;
374
375 for (i = 0; i < 4; i++) {
376 u32 basereg = readl(mbus->sdramwins_base + DDR_BASE_CS_OFF(i));
377 u32 sizereg = readl(mbus->sdramwins_base + DDR_SIZE_CS_OFF(i));
378 u64 base;
379 u32 size;
380
381 if (!(sizereg & DDR_SIZE_ENABLED)) {
382 seq_printf(seq, "[%d] disabled\n", i);
383 continue;
384 }
385
386 base = ((u64)basereg & DDR_BASE_CS_HIGH_MASK) << 32;
387 base |= basereg & DDR_BASE_CS_LOW_MASK;
388 size = (sizereg | ~DDR_SIZE_MASK);
389
390 seq_printf(seq, "[%d] %016llx - %016llx : cs%d\n",
391 i, (unsigned long long)base,
392 (unsigned long long)base + size + 1,
393 (sizereg & DDR_SIZE_CS_MASK) >> DDR_SIZE_CS_SHIFT);
394 }
395
396 return 0;
397}
398
399/* Special function for Dove */
400static int mvebu_sdram_debug_show_dove(struct mvebu_mbus_state *mbus,
401 struct seq_file *seq, void *v)
402{
403 int i;
404
405 for (i = 0; i < 2; i++) {
406 u32 map = readl(mbus->sdramwins_base + DOVE_DDR_BASE_CS_OFF(i));
407 u64 base;
408 u32 size;
409
410 if (!(map & 1)) {
411 seq_printf(seq, "[%d] disabled\n", i);
412 continue;
413 }
414
415 base = map & 0xff800000;
416 size = 0x100000 << (((map & 0x000f0000) >> 16) - 4);
417
418 seq_printf(seq, "[%d] %016llx - %016llx : cs%d\n",
419 i, (unsigned long long)base,
420 (unsigned long long)base + size, i);
421 }
422
423 return 0;
424}
425
426static int mvebu_sdram_debug_show(struct seq_file *seq, void *v)
427{
428 struct mvebu_mbus_state *mbus = &mbus_state;
429 return mbus->soc->show_cpu_target(mbus, seq, v);
430}
431
432static int mvebu_sdram_debug_open(struct inode *inode, struct file *file)
433{
434 return single_open(file, mvebu_sdram_debug_show, inode->i_private);
435}
436
437static const struct file_operations mvebu_sdram_debug_fops = {
438 .open = mvebu_sdram_debug_open,
439 .read = seq_read,
440 .llseek = seq_lseek,
441 .release = single_release,
442};
443
444static int mvebu_devs_debug_show(struct seq_file *seq, void *v)
445{
446 struct mvebu_mbus_state *mbus = &mbus_state;
447 int win;
448
449 for (win = 0; win < mbus->soc->num_wins; win++) {
450 u64 wbase, wremap;
451 u32 wsize;
452 u8 wtarget, wattr;
Thomas Petazzonied843a72013-07-26 10:17:51 -0300453 int enabled;
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100454
455 mvebu_mbus_read_window(mbus, win,
456 &enabled, &wbase, &wsize,
457 &wtarget, &wattr, &wremap);
458
459 if (!enabled) {
460 seq_printf(seq, "[%02d] disabled\n", win);
461 continue;
462 }
463
Thomas Petazzonied843a72013-07-26 10:17:51 -0300464 seq_printf(seq, "[%02d] %016llx - %016llx : %04x:%04x",
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100465 win, (unsigned long long)wbase,
Thomas Petazzonied843a72013-07-26 10:17:51 -0300466 (unsigned long long)(wbase + wsize), wtarget, wattr);
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100467
Jason Gunthorpe09752a12014-04-18 14:19:51 +0200468 if (!is_power_of_2(wsize) ||
469 ((wbase & (u64)(wsize - 1)) != 0))
470 seq_puts(seq, " (Invalid base/size!!)");
471
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100472 if (win < mbus->soc->num_remappable_wins) {
473 seq_printf(seq, " (remap %016llx)\n",
474 (unsigned long long)wremap);
475 } else
476 seq_printf(seq, "\n");
477 }
478
479 return 0;
480}
481
482static int mvebu_devs_debug_open(struct inode *inode, struct file *file)
483{
484 return single_open(file, mvebu_devs_debug_show, inode->i_private);
485}
486
487static const struct file_operations mvebu_devs_debug_fops = {
488 .open = mvebu_devs_debug_open,
489 .read = seq_read,
490 .llseek = seq_lseek,
491 .release = single_release,
492};
493
494/*
495 * SoC-specific functions and definitions
496 */
497
498static unsigned int orion_mbus_win_offset(int win)
499{
500 return win << 4;
501}
502
503static unsigned int armada_370_xp_mbus_win_offset(int win)
504{
505 /* The register layout is a bit annoying and the below code
506 * tries to cope with it.
507 * - At offset 0x0, there are the registers for the first 8
508 * windows, with 4 registers of 32 bits per window (ctrl,
509 * base, remap low, remap high)
510 * - Then at offset 0x80, there is a hole of 0x10 bytes for
511 * the internal registers base address and internal units
512 * sync barrier register.
513 * - Then at offset 0x90, there the registers for 12
514 * windows, with only 2 registers of 32 bits per window
515 * (ctrl, base).
516 */
517 if (win < 8)
518 return win << 4;
519 else
520 return 0x90 + ((win - 8) << 3);
521}
522
523static unsigned int mv78xx0_mbus_win_offset(int win)
524{
525 if (win < 8)
526 return win << 4;
527 else
528 return 0x900 + ((win - 8) << 4);
529}
530
531static void __init
532mvebu_mbus_default_setup_cpu_target(struct mvebu_mbus_state *mbus)
533{
534 int i;
535 int cs;
536
537 mvebu_mbus_dram_info.mbus_dram_target_id = TARGET_DDR;
538
539 for (i = 0, cs = 0; i < 4; i++) {
540 u32 base = readl(mbus->sdramwins_base + DDR_BASE_CS_OFF(i));
541 u32 size = readl(mbus->sdramwins_base + DDR_SIZE_CS_OFF(i));
542
543 /*
544 * We only take care of entries for which the chip
545 * select is enabled, and that don't have high base
546 * address bits set (devices can only access the first
547 * 32 bits of the memory).
548 */
549 if ((size & DDR_SIZE_ENABLED) &&
550 !(base & DDR_BASE_CS_HIGH_MASK)) {
551 struct mbus_dram_window *w;
552
553 w = &mvebu_mbus_dram_info.cs[cs++];
554 w->cs_index = i;
555 w->mbus_attr = 0xf & ~(1 << i);
556 if (mbus->hw_io_coherency)
557 w->mbus_attr |= ATTR_HW_COHERENCY;
558 w->base = base & DDR_BASE_CS_LOW_MASK;
559 w->size = (size | ~DDR_SIZE_MASK) + 1;
560 }
561 }
562 mvebu_mbus_dram_info.num_cs = cs;
563}
564
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100565static int
566mvebu_mbus_default_save_cpu_target(struct mvebu_mbus_state *mbus,
567 u32 *store_addr)
568{
569 int i;
570
571 for (i = 0; i < 4; i++) {
572 u32 base = readl(mbus->sdramwins_base + DDR_BASE_CS_OFF(i));
573 u32 size = readl(mbus->sdramwins_base + DDR_SIZE_CS_OFF(i));
574
575 writel(mbus->sdramwins_phys_base + DDR_BASE_CS_OFF(i),
576 store_addr++);
577 writel(base, store_addr++);
578 writel(mbus->sdramwins_phys_base + DDR_SIZE_CS_OFF(i),
579 store_addr++);
580 writel(size, store_addr++);
581 }
582
583 /* We've written 16 words to the store address */
584 return 16;
585}
586
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100587static void __init
588mvebu_mbus_dove_setup_cpu_target(struct mvebu_mbus_state *mbus)
589{
590 int i;
591 int cs;
592
593 mvebu_mbus_dram_info.mbus_dram_target_id = TARGET_DDR;
594
595 for (i = 0, cs = 0; i < 2; i++) {
596 u32 map = readl(mbus->sdramwins_base + DOVE_DDR_BASE_CS_OFF(i));
597
598 /*
599 * Chip select enabled?
600 */
601 if (map & 1) {
602 struct mbus_dram_window *w;
603
604 w = &mvebu_mbus_dram_info.cs[cs++];
605 w->cs_index = i;
606 w->mbus_attr = 0; /* CS address decoding done inside */
607 /* the DDR controller, no need to */
608 /* provide attributes */
609 w->base = map & 0xff800000;
610 w->size = 0x100000 << (((map & 0x000f0000) >> 16) - 4);
611 }
612 }
613
614 mvebu_mbus_dram_info.num_cs = cs;
615}
616
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100617static int
618mvebu_mbus_dove_save_cpu_target(struct mvebu_mbus_state *mbus,
619 u32 *store_addr)
620{
621 int i;
622
623 for (i = 0; i < 2; i++) {
624 u32 map = readl(mbus->sdramwins_base + DOVE_DDR_BASE_CS_OFF(i));
625
626 writel(mbus->sdramwins_phys_base + DOVE_DDR_BASE_CS_OFF(i),
627 store_addr++);
628 writel(map, store_addr++);
629 }
630
631 /* We've written 4 words to the store address */
632 return 4;
633}
634
635int mvebu_mbus_save_cpu_target(u32 *store_addr)
636{
637 return mbus_state.soc->save_cpu_target(&mbus_state, store_addr);
638}
639
Thomas Petazzoni59cb2fc2013-07-26 10:17:53 -0300640static const struct mvebu_mbus_soc_data armada_370_xp_mbus_data = {
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100641 .num_wins = 20,
642 .num_remappable_wins = 8,
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100643 .has_mbus_bridge = true,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100644 .win_cfg_offset = armada_370_xp_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100645 .save_cpu_target = mvebu_mbus_default_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100646 .setup_cpu_target = mvebu_mbus_default_setup_cpu_target,
647 .show_cpu_target = mvebu_sdram_debug_show_orion,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100648};
649
650static const struct mvebu_mbus_soc_data kirkwood_mbus_data = {
651 .num_wins = 8,
652 .num_remappable_wins = 4,
653 .win_cfg_offset = orion_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100654 .save_cpu_target = mvebu_mbus_default_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100655 .setup_cpu_target = mvebu_mbus_default_setup_cpu_target,
656 .show_cpu_target = mvebu_sdram_debug_show_orion,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100657};
658
659static const struct mvebu_mbus_soc_data dove_mbus_data = {
660 .num_wins = 8,
661 .num_remappable_wins = 4,
662 .win_cfg_offset = orion_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100663 .save_cpu_target = mvebu_mbus_dove_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100664 .setup_cpu_target = mvebu_mbus_dove_setup_cpu_target,
665 .show_cpu_target = mvebu_sdram_debug_show_dove,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100666};
667
668/*
669 * Some variants of Orion5x have 4 remappable windows, some other have
670 * only two of them.
671 */
672static const struct mvebu_mbus_soc_data orion5x_4win_mbus_data = {
673 .num_wins = 8,
674 .num_remappable_wins = 4,
675 .win_cfg_offset = orion_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100676 .save_cpu_target = mvebu_mbus_default_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100677 .setup_cpu_target = mvebu_mbus_default_setup_cpu_target,
678 .show_cpu_target = mvebu_sdram_debug_show_orion,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100679};
680
681static const struct mvebu_mbus_soc_data orion5x_2win_mbus_data = {
682 .num_wins = 8,
683 .num_remappable_wins = 2,
684 .win_cfg_offset = orion_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100685 .save_cpu_target = mvebu_mbus_default_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100686 .setup_cpu_target = mvebu_mbus_default_setup_cpu_target,
687 .show_cpu_target = mvebu_sdram_debug_show_orion,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100688};
689
690static const struct mvebu_mbus_soc_data mv78xx0_mbus_data = {
691 .num_wins = 14,
692 .num_remappable_wins = 8,
693 .win_cfg_offset = mv78xx0_mbus_win_offset,
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100694 .save_cpu_target = mvebu_mbus_default_save_cpu_target,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100695 .setup_cpu_target = mvebu_mbus_default_setup_cpu_target,
696 .show_cpu_target = mvebu_sdram_debug_show_orion,
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100697};
698
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100699static const struct of_device_id of_mvebu_mbus_ids[] = {
700 { .compatible = "marvell,armada370-mbus",
Thomas Petazzoni59cb2fc2013-07-26 10:17:53 -0300701 .data = &armada_370_xp_mbus_data, },
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100702 { .compatible = "marvell,armadaxp-mbus",
Thomas Petazzoni59cb2fc2013-07-26 10:17:53 -0300703 .data = &armada_370_xp_mbus_data, },
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100704 { .compatible = "marvell,kirkwood-mbus",
705 .data = &kirkwood_mbus_data, },
706 { .compatible = "marvell,dove-mbus",
707 .data = &dove_mbus_data, },
708 { .compatible = "marvell,orion5x-88f5281-mbus",
709 .data = &orion5x_4win_mbus_data, },
710 { .compatible = "marvell,orion5x-88f5182-mbus",
711 .data = &orion5x_2win_mbus_data, },
712 { .compatible = "marvell,orion5x-88f5181-mbus",
713 .data = &orion5x_2win_mbus_data, },
714 { .compatible = "marvell,orion5x-88f6183-mbus",
715 .data = &orion5x_4win_mbus_data, },
716 { .compatible = "marvell,mv78xx0-mbus",
717 .data = &mv78xx0_mbus_data, },
718 { },
719};
720
721/*
722 * Public API of the driver
723 */
Thomas Petazzoni6a63b092013-07-26 10:17:39 -0300724int mvebu_mbus_add_window_remap_by_id(unsigned int target,
725 unsigned int attribute,
726 phys_addr_t base, size_t size,
727 phys_addr_t remap)
728{
729 struct mvebu_mbus_state *s = &mbus_state;
730
731 if (!mvebu_mbus_window_conflicts(s, base, size, target, attribute)) {
732 pr_err("cannot add window '%x:%x', conflicts with another window\n",
733 target, attribute);
734 return -EINVAL;
735 }
736
737 return mvebu_mbus_alloc_window(s, base, size, remap, target, attribute);
738}
739
Thomas Petazzoni6a63b092013-07-26 10:17:39 -0300740int mvebu_mbus_add_window_by_id(unsigned int target, unsigned int attribute,
741 phys_addr_t base, size_t size)
742{
743 return mvebu_mbus_add_window_remap_by_id(target, attribute, base,
744 size, MVEBU_MBUS_NO_REMAP);
745}
746
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100747int mvebu_mbus_del_window(phys_addr_t base, size_t size)
748{
749 int win;
750
751 win = mvebu_mbus_find_window(&mbus_state, base, size);
752 if (win < 0)
753 return win;
754
755 mvebu_mbus_disable_window(&mbus_state, win);
756 return 0;
757}
758
Ezequiel Garcia79d94682013-07-26 10:17:47 -0300759void mvebu_mbus_get_pcie_mem_aperture(struct resource *res)
760{
761 if (!res)
762 return;
763 *res = mbus_state.pcie_mem_aperture;
764}
765
766void mvebu_mbus_get_pcie_io_aperture(struct resource *res)
767{
768 if (!res)
769 return;
770 *res = mbus_state.pcie_io_aperture;
771}
772
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100773static __init int mvebu_mbus_debugfs_init(void)
774{
775 struct mvebu_mbus_state *s = &mbus_state;
776
777 /*
778 * If no base has been initialized, doesn't make sense to
779 * register the debugfs entries. We may be on a multiplatform
780 * kernel that isn't running a Marvell EBU SoC.
781 */
782 if (!s->mbuswins_base)
783 return 0;
784
785 s->debugfs_root = debugfs_create_dir("mvebu-mbus", NULL);
786 if (s->debugfs_root) {
787 s->debugfs_sdram = debugfs_create_file("sdram", S_IRUGO,
788 s->debugfs_root, NULL,
789 &mvebu_sdram_debug_fops);
790 s->debugfs_devs = debugfs_create_file("devices", S_IRUGO,
791 s->debugfs_root, NULL,
792 &mvebu_devs_debug_fops);
793 }
794
795 return 0;
796}
797fs_initcall(mvebu_mbus_debugfs_init);
798
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100799static int mvebu_mbus_suspend(void)
800{
801 struct mvebu_mbus_state *s = &mbus_state;
802 int win;
803
804 if (!s->mbusbridge_base)
805 return -ENODEV;
806
807 for (win = 0; win < s->soc->num_wins; win++) {
808 void __iomem *addr = s->mbuswins_base +
809 s->soc->win_cfg_offset(win);
810
811 s->wins[win].base = readl(addr + WIN_BASE_OFF);
812 s->wins[win].ctrl = readl(addr + WIN_CTRL_OFF);
813
814 if (win >= s->soc->num_remappable_wins)
815 continue;
816
817 s->wins[win].remap_lo = readl(addr + WIN_REMAP_LO_OFF);
818 s->wins[win].remap_hi = readl(addr + WIN_REMAP_HI_OFF);
819 }
820
821 s->mbus_bridge_ctrl = readl(s->mbusbridge_base +
822 MBUS_BRIDGE_CTRL_OFF);
823 s->mbus_bridge_base = readl(s->mbusbridge_base +
824 MBUS_BRIDGE_BASE_OFF);
825
826 return 0;
827}
828
829static void mvebu_mbus_resume(void)
830{
831 struct mvebu_mbus_state *s = &mbus_state;
832 int win;
833
834 writel(s->mbus_bridge_ctrl,
835 s->mbusbridge_base + MBUS_BRIDGE_CTRL_OFF);
836 writel(s->mbus_bridge_base,
837 s->mbusbridge_base + MBUS_BRIDGE_BASE_OFF);
838
839 for (win = 0; win < s->soc->num_wins; win++) {
840 void __iomem *addr = s->mbuswins_base +
841 s->soc->win_cfg_offset(win);
842
843 writel(s->wins[win].base, addr + WIN_BASE_OFF);
844 writel(s->wins[win].ctrl, addr + WIN_CTRL_OFF);
845
846 if (win >= s->soc->num_remappable_wins)
847 continue;
848
849 writel(s->wins[win].remap_lo, addr + WIN_REMAP_LO_OFF);
850 writel(s->wins[win].remap_hi, addr + WIN_REMAP_HI_OFF);
851 }
852}
853
854struct syscore_ops mvebu_mbus_syscore_ops = {
855 .suspend = mvebu_mbus_suspend,
856 .resume = mvebu_mbus_resume,
857};
858
Ezequiel Garcia6bd6b3c2013-07-26 10:17:44 -0300859static int __init mvebu_mbus_common_init(struct mvebu_mbus_state *mbus,
860 phys_addr_t mbuswins_phys_base,
861 size_t mbuswins_size,
862 phys_addr_t sdramwins_phys_base,
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100863 size_t sdramwins_size,
864 phys_addr_t mbusbridge_phys_base,
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +0100865 size_t mbusbridge_size,
866 bool is_coherent)
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100867{
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100868 int win;
869
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100870 mbus->mbuswins_base = ioremap(mbuswins_phys_base, mbuswins_size);
871 if (!mbus->mbuswins_base)
872 return -ENOMEM;
873
874 mbus->sdramwins_base = ioremap(sdramwins_phys_base, sdramwins_size);
875 if (!mbus->sdramwins_base) {
876 iounmap(mbus_state.mbuswins_base);
877 return -ENOMEM;
878 }
879
Thomas Petazzoni4749c022014-11-21 17:00:04 +0100880 mbus->sdramwins_phys_base = sdramwins_phys_base;
881
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100882 if (mbusbridge_phys_base) {
883 mbus->mbusbridge_base = ioremap(mbusbridge_phys_base,
884 mbusbridge_size);
885 if (!mbus->mbusbridge_base) {
886 iounmap(mbus->sdramwins_base);
887 iounmap(mbus->mbuswins_base);
888 return -ENOMEM;
889 }
890 } else
891 mbus->mbusbridge_base = NULL;
892
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100893 for (win = 0; win < mbus->soc->num_wins; win++)
894 mvebu_mbus_disable_window(mbus, win);
895
896 mbus->soc->setup_cpu_target(mbus);
897
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +0100898 if (is_coherent)
899 writel(UNIT_SYNC_BARRIER_ALL,
900 mbus->mbuswins_base + UNIT_SYNC_BARRIER_OFF);
901
Thomas Petazzonia0e89c02014-11-21 17:00:03 +0100902 register_syscore_ops(&mvebu_mbus_syscore_ops);
903
Thomas Petazzonifddddb52013-03-21 17:59:14 +0100904 return 0;
905}
Ezequiel Garcia6bd6b3c2013-07-26 10:17:44 -0300906
907int __init mvebu_mbus_init(const char *soc, phys_addr_t mbuswins_phys_base,
908 size_t mbuswins_size,
909 phys_addr_t sdramwins_phys_base,
910 size_t sdramwins_size)
911{
912 const struct of_device_id *of_id;
913
Dan Carpenter7663cfd2013-11-13 10:50:24 +0300914 for (of_id = of_mvebu_mbus_ids; of_id->compatible[0]; of_id++)
Ezequiel Garcia6bd6b3c2013-07-26 10:17:44 -0300915 if (!strcmp(of_id->compatible, soc))
916 break;
917
Dan Carpenter7663cfd2013-11-13 10:50:24 +0300918 if (!of_id->compatible[0]) {
Ezequiel Garcia6bd6b3c2013-07-26 10:17:44 -0300919 pr_err("could not find a matching SoC family\n");
920 return -ENODEV;
921 }
922
923 mbus_state.soc = of_id->data;
924
925 return mvebu_mbus_common_init(&mbus_state,
926 mbuswins_phys_base,
927 mbuswins_size,
928 sdramwins_phys_base,
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +0100929 sdramwins_size, 0, 0, false);
Ezequiel Garcia6bd6b3c2013-07-26 10:17:44 -0300930}
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -0300931
932#ifdef CONFIG_OF
Ezequiel Garciabb24cab2013-07-26 10:17:46 -0300933/*
934 * The window IDs in the ranges DT property have the following format:
935 * - bits 28 to 31: MBus custom field
936 * - bits 24 to 27: window target ID
937 * - bits 16 to 23: window attribute ID
938 * - bits 0 to 15: unused
939 */
940#define CUSTOM(id) (((id) & 0xF0000000) >> 24)
941#define TARGET(id) (((id) & 0x0F000000) >> 24)
942#define ATTR(id) (((id) & 0x00FF0000) >> 16)
943
944static int __init mbus_dt_setup_win(struct mvebu_mbus_state *mbus,
945 u32 base, u32 size,
946 u8 target, u8 attr)
947{
Ezequiel Garciabb24cab2013-07-26 10:17:46 -0300948 if (!mvebu_mbus_window_conflicts(mbus, base, size, target, attr)) {
Thomas Petazzonied843a72013-07-26 10:17:51 -0300949 pr_err("cannot add window '%04x:%04x', conflicts with another window\n",
950 target, attr);
Ezequiel Garciabb24cab2013-07-26 10:17:46 -0300951 return -EBUSY;
952 }
953
954 if (mvebu_mbus_alloc_window(mbus, base, size, MVEBU_MBUS_NO_REMAP,
955 target, attr)) {
Thomas Petazzonied843a72013-07-26 10:17:51 -0300956 pr_err("cannot add window '%04x:%04x', too many windows\n",
957 target, attr);
Ezequiel Garciabb24cab2013-07-26 10:17:46 -0300958 return -ENOMEM;
959 }
960 return 0;
961}
962
963static int __init
964mbus_parse_ranges(struct device_node *node,
965 int *addr_cells, int *c_addr_cells, int *c_size_cells,
966 int *cell_count, const __be32 **ranges_start,
967 const __be32 **ranges_end)
968{
969 const __be32 *prop;
970 int ranges_len, tuple_len;
971
972 /* Allow a node with no 'ranges' property */
973 *ranges_start = of_get_property(node, "ranges", &ranges_len);
974 if (*ranges_start == NULL) {
975 *addr_cells = *c_addr_cells = *c_size_cells = *cell_count = 0;
976 *ranges_start = *ranges_end = NULL;
977 return 0;
978 }
979 *ranges_end = *ranges_start + ranges_len / sizeof(__be32);
980
981 *addr_cells = of_n_addr_cells(node);
982
983 prop = of_get_property(node, "#address-cells", NULL);
984 *c_addr_cells = be32_to_cpup(prop);
985
986 prop = of_get_property(node, "#size-cells", NULL);
987 *c_size_cells = be32_to_cpup(prop);
988
989 *cell_count = *addr_cells + *c_addr_cells + *c_size_cells;
990 tuple_len = (*cell_count) * sizeof(__be32);
991
992 if (ranges_len % tuple_len) {
993 pr_warn("malformed ranges entry '%s'\n", node->name);
994 return -EINVAL;
995 }
996 return 0;
997}
998
999static int __init mbus_dt_setup(struct mvebu_mbus_state *mbus,
1000 struct device_node *np)
1001{
1002 int addr_cells, c_addr_cells, c_size_cells;
1003 int i, ret, cell_count;
1004 const __be32 *r, *ranges_start, *ranges_end;
1005
1006 ret = mbus_parse_ranges(np, &addr_cells, &c_addr_cells,
1007 &c_size_cells, &cell_count,
1008 &ranges_start, &ranges_end);
1009 if (ret < 0)
1010 return ret;
1011
1012 for (i = 0, r = ranges_start; r < ranges_end; r += cell_count, i++) {
1013 u32 windowid, base, size;
1014 u8 target, attr;
1015
1016 /*
1017 * An entry with a non-zero custom field do not
1018 * correspond to a static window, so skip it.
1019 */
1020 windowid = of_read_number(r, 1);
1021 if (CUSTOM(windowid))
1022 continue;
1023
1024 target = TARGET(windowid);
1025 attr = ATTR(windowid);
1026
1027 base = of_read_number(r + c_addr_cells, addr_cells);
1028 size = of_read_number(r + c_addr_cells + addr_cells,
1029 c_size_cells);
1030 ret = mbus_dt_setup_win(mbus, base, size, target, attr);
1031 if (ret < 0)
1032 return ret;
1033 }
1034 return 0;
1035}
1036
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001037static void __init mvebu_mbus_get_pcie_resources(struct device_node *np,
1038 struct resource *mem,
1039 struct resource *io)
1040{
1041 u32 reg[2];
1042 int ret;
1043
1044 /*
Jason Gunthorpe8553bca2013-09-17 14:11:04 -06001045 * These are optional, so we make sure that resource_size(x) will
1046 * return 0.
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001047 */
1048 memset(mem, 0, sizeof(struct resource));
Jason Gunthorpe8553bca2013-09-17 14:11:04 -06001049 mem->end = -1;
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001050 memset(io, 0, sizeof(struct resource));
Jason Gunthorpe8553bca2013-09-17 14:11:04 -06001051 io->end = -1;
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001052
1053 ret = of_property_read_u32_array(np, "pcie-mem-aperture", reg, ARRAY_SIZE(reg));
1054 if (!ret) {
1055 mem->start = reg[0];
Jason Gunthorpea723e752014-02-12 15:57:07 -07001056 mem->end = mem->start + reg[1] - 1;
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001057 mem->flags = IORESOURCE_MEM;
1058 }
1059
1060 ret = of_property_read_u32_array(np, "pcie-io-aperture", reg, ARRAY_SIZE(reg));
1061 if (!ret) {
1062 io->start = reg[0];
Jason Gunthorpea723e752014-02-12 15:57:07 -07001063 io->end = io->start + reg[1] - 1;
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001064 io->flags = IORESOURCE_IO;
1065 }
1066}
1067
Thomas Petazzoni5686a1e2014-04-14 15:47:01 +02001068int __init mvebu_mbus_dt_init(bool is_coherent)
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001069{
Thomas Petazzonia0e89c02014-11-21 17:00:03 +01001070 struct resource mbuswins_res, sdramwins_res, mbusbridge_res;
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001071 struct device_node *np, *controller;
1072 const struct of_device_id *of_id;
1073 const __be32 *prop;
1074 int ret;
1075
Josh Cartwright087a4ab2014-02-11 10:24:00 -06001076 np = of_find_matching_node_and_match(NULL, of_mvebu_mbus_ids, &of_id);
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001077 if (!np) {
1078 pr_err("could not find a matching SoC family\n");
1079 return -ENODEV;
1080 }
1081
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001082 mbus_state.soc = of_id->data;
1083
1084 prop = of_get_property(np, "controller", NULL);
1085 if (!prop) {
1086 pr_err("required 'controller' property missing\n");
1087 return -EINVAL;
1088 }
1089
1090 controller = of_find_node_by_phandle(be32_to_cpup(prop));
1091 if (!controller) {
1092 pr_err("could not find an 'mbus-controller' node\n");
1093 return -ENODEV;
1094 }
1095
1096 if (of_address_to_resource(controller, 0, &mbuswins_res)) {
1097 pr_err("cannot get MBUS register address\n");
1098 return -EINVAL;
1099 }
1100
1101 if (of_address_to_resource(controller, 1, &sdramwins_res)) {
1102 pr_err("cannot get SDRAM register address\n");
1103 return -EINVAL;
1104 }
1105
Thomas Petazzonia0e89c02014-11-21 17:00:03 +01001106 /*
1107 * Set the resource to 0 so that it can be left unmapped by
1108 * mvebu_mbus_common_init() if the DT doesn't carry the
1109 * necessary information. This is needed to preserve backward
1110 * compatibility.
1111 */
1112 memset(&mbusbridge_res, 0, sizeof(mbusbridge_res));
1113
1114 if (mbus_state.soc->has_mbus_bridge) {
1115 if (of_address_to_resource(controller, 2, &mbusbridge_res))
1116 pr_warn(FW_WARN "deprecated mbus-mvebu Device Tree, suspend/resume will not work\n");
1117 }
1118
Thomas Petazzoni5686a1e2014-04-14 15:47:01 +02001119 mbus_state.hw_io_coherency = is_coherent;
1120
Ezequiel Garcia79d94682013-07-26 10:17:47 -03001121 /* Get optional pcie-{mem,io}-aperture properties */
1122 mvebu_mbus_get_pcie_resources(np, &mbus_state.pcie_mem_aperture,
1123 &mbus_state.pcie_io_aperture);
1124
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001125 ret = mvebu_mbus_common_init(&mbus_state,
1126 mbuswins_res.start,
1127 resource_size(&mbuswins_res),
1128 sdramwins_res.start,
Thomas Petazzonia0e89c02014-11-21 17:00:03 +01001129 resource_size(&sdramwins_res),
1130 mbusbridge_res.start,
Thomas Petazzonia0b5cd42015-01-16 17:11:28 +01001131 resource_size(&mbusbridge_res),
1132 is_coherent);
Ezequiel Garciabb24cab2013-07-26 10:17:46 -03001133 if (ret)
1134 return ret;
1135
1136 /* Setup statically declared windows in the DT */
1137 return mbus_dt_setup(&mbus_state, np);
Ezequiel Garcia6839cfa2013-07-26 10:17:45 -03001138}
1139#endif