net: cdc_ncm: fix control message ordering
[linux.git] / drivers / bus / mvebu-mbus.c
1 /*
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 ->
38  *   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().
41  *
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
48 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
50 #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>
59
60 /*
61  * DDR target is the same on all platforms.
62  */
63 #define TARGET_DDR              0
64
65 /*
66  * CPU Address Decode Windows registers
67  */
68 #define WIN_CTRL_OFF            0x0000
69 #define   WIN_CTRL_ENABLE       BIT(0)
70 #define   WIN_CTRL_TGT_MASK     0xf0
71 #define   WIN_CTRL_TGT_SHIFT    4
72 #define   WIN_CTRL_ATTR_MASK    0xff00
73 #define   WIN_CTRL_ATTR_SHIFT   8
74 #define   WIN_CTRL_SIZE_MASK    0xffff0000
75 #define   WIN_CTRL_SIZE_SHIFT   16
76 #define WIN_BASE_OFF            0x0004
77 #define   WIN_BASE_LOW          0xffff0000
78 #define   WIN_BASE_HIGH         0xf
79 #define WIN_REMAP_LO_OFF        0x0008
80 #define   WIN_REMAP_LOW         0xffff0000
81 #define WIN_REMAP_HI_OFF        0x000c
82
83 #define ATTR_HW_COHERENCY       (0x1 << 4)
84
85 #define DDR_BASE_CS_OFF(n)      (0x0000 + ((n) << 3))
86 #define  DDR_BASE_CS_HIGH_MASK  0xf
87 #define  DDR_BASE_CS_LOW_MASK   0xff000000
88 #define DDR_SIZE_CS_OFF(n)      (0x0004 + ((n) << 3))
89 #define  DDR_SIZE_ENABLED       BIT(0)
90 #define  DDR_SIZE_CS_MASK       0x1c
91 #define  DDR_SIZE_CS_SHIFT      2
92 #define  DDR_SIZE_MASK          0xff000000
93
94 #define DOVE_DDR_BASE_CS_OFF(n) ((n) << 4)
95
96 struct mvebu_mbus_state;
97
98 struct mvebu_mbus_soc_data {
99         unsigned int num_wins;
100         unsigned int num_remappable_wins;
101         unsigned int (*win_cfg_offset)(const int win);
102         void (*setup_cpu_target)(struct mvebu_mbus_state *s);
103         int (*show_cpu_target)(struct mvebu_mbus_state *s,
104                                struct seq_file *seq, void *v);
105 };
106
107 struct mvebu_mbus_state {
108         void __iomem *mbuswins_base;
109         void __iomem *sdramwins_base;
110         struct dentry *debugfs_root;
111         struct dentry *debugfs_sdram;
112         struct dentry *debugfs_devs;
113         struct resource pcie_mem_aperture;
114         struct resource pcie_io_aperture;
115         const struct mvebu_mbus_soc_data *soc;
116         int hw_io_coherency;
117 };
118
119 static struct mvebu_mbus_state mbus_state;
120
121 static struct mbus_dram_target_info mvebu_mbus_dram_info;
122 const struct mbus_dram_target_info *mv_mbus_dram_info(void)
123 {
124         return &mvebu_mbus_dram_info;
125 }
126 EXPORT_SYMBOL_GPL(mv_mbus_dram_info);
127
128 /*
129  * Functions to manipulate the address decoding windows
130  */
131
132 static void mvebu_mbus_read_window(struct mvebu_mbus_state *mbus,
133                                    int win, int *enabled, u64 *base,
134                                    u32 *size, u8 *target, u8 *attr,
135                                    u64 *remap)
136 {
137         void __iomem *addr = mbus->mbuswins_base +
138                 mbus->soc->win_cfg_offset(win);
139         u32 basereg = readl(addr + WIN_BASE_OFF);
140         u32 ctrlreg = readl(addr + WIN_CTRL_OFF);
141
142         if (!(ctrlreg & WIN_CTRL_ENABLE)) {
143                 *enabled = 0;
144                 return;
145         }
146
147         *enabled = 1;
148         *base = ((u64)basereg & WIN_BASE_HIGH) << 32;
149         *base |= (basereg & WIN_BASE_LOW);
150         *size = (ctrlreg | ~WIN_CTRL_SIZE_MASK) + 1;
151
152         if (target)
153                 *target = (ctrlreg & WIN_CTRL_TGT_MASK) >> WIN_CTRL_TGT_SHIFT;
154
155         if (attr)
156                 *attr = (ctrlreg & WIN_CTRL_ATTR_MASK) >> WIN_CTRL_ATTR_SHIFT;
157
158         if (remap) {
159                 if (win < mbus->soc->num_remappable_wins) {
160                         u32 remap_low = readl(addr + WIN_REMAP_LO_OFF);
161                         u32 remap_hi  = readl(addr + WIN_REMAP_HI_OFF);
162                         *remap = ((u64)remap_hi << 32) | remap_low;
163                 } else
164                         *remap = 0;
165         }
166 }
167
168 static void mvebu_mbus_disable_window(struct mvebu_mbus_state *mbus,
169                                       int win)
170 {
171         void __iomem *addr;
172
173         addr = mbus->mbuswins_base + mbus->soc->win_cfg_offset(win);
174
175         writel(0, addr + WIN_BASE_OFF);
176         writel(0, addr + WIN_CTRL_OFF);
177         if (win < mbus->soc->num_remappable_wins) {
178                 writel(0, addr + WIN_REMAP_LO_OFF);
179                 writel(0, addr + WIN_REMAP_HI_OFF);
180         }
181 }
182
183 /* Checks whether the given window number is available */
184 static int mvebu_mbus_window_is_free(struct mvebu_mbus_state *mbus,
185                                      const int win)
186 {
187         void __iomem *addr = mbus->mbuswins_base +
188                 mbus->soc->win_cfg_offset(win);
189         u32 ctrl = readl(addr + WIN_CTRL_OFF);
190         return !(ctrl & WIN_CTRL_ENABLE);
191 }
192
193 /*
194  * Checks whether the given (base, base+size) area doesn't overlap an
195  * existing region
196  */
197 static int mvebu_mbus_window_conflicts(struct mvebu_mbus_state *mbus,
198                                        phys_addr_t base, size_t size,
199                                        u8 target, u8 attr)
200 {
201         u64 end = (u64)base + size;
202         int win;
203
204         for (win = 0; win < mbus->soc->num_wins; win++) {
205                 u64 wbase, wend;
206                 u32 wsize;
207                 u8 wtarget, wattr;
208                 int enabled;
209
210                 mvebu_mbus_read_window(mbus, win,
211                                        &enabled, &wbase, &wsize,
212                                        &wtarget, &wattr, NULL);
213
214                 if (!enabled)
215                         continue;
216
217                 wend = wbase + wsize;
218
219                 /*
220                  * Check if the current window overlaps with the
221                  * proposed physical range
222                  */
223                 if ((u64)base < wend && end > wbase)
224                         return 0;
225
226                 /*
227                  * Check if target/attribute conflicts
228                  */
229                 if (target == wtarget && attr == wattr)
230                         return 0;
231         }
232
233         return 1;
234 }
235
236 static int mvebu_mbus_find_window(struct mvebu_mbus_state *mbus,
237                                   phys_addr_t base, size_t size)
238 {
239         int win;
240
241         for (win = 0; win < mbus->soc->num_wins; win++) {
242                 u64 wbase;
243                 u32 wsize;
244                 int enabled;
245
246                 mvebu_mbus_read_window(mbus, win,
247                                        &enabled, &wbase, &wsize,
248                                        NULL, NULL, NULL);
249
250                 if (!enabled)
251                         continue;
252
253                 if (base == wbase && size == wsize)
254                         return win;
255         }
256
257         return -ENODEV;
258 }
259
260 static int mvebu_mbus_setup_window(struct mvebu_mbus_state *mbus,
261                                    int win, phys_addr_t base, size_t size,
262                                    phys_addr_t remap, u8 target,
263                                    u8 attr)
264 {
265         void __iomem *addr = mbus->mbuswins_base +
266                 mbus->soc->win_cfg_offset(win);
267         u32 ctrl, remap_addr;
268
269         ctrl = ((size - 1) & WIN_CTRL_SIZE_MASK) |
270                 (attr << WIN_CTRL_ATTR_SHIFT)    |
271                 (target << WIN_CTRL_TGT_SHIFT)   |
272                 WIN_CTRL_ENABLE;
273
274         writel(base & WIN_BASE_LOW, addr + WIN_BASE_OFF);
275         writel(ctrl, addr + WIN_CTRL_OFF);
276         if (win < mbus->soc->num_remappable_wins) {
277                 if (remap == MVEBU_MBUS_NO_REMAP)
278                         remap_addr = base;
279                 else
280                         remap_addr = remap;
281                 writel(remap_addr & WIN_REMAP_LOW, addr + WIN_REMAP_LO_OFF);
282                 writel(0, addr + WIN_REMAP_HI_OFF);
283         }
284
285         return 0;
286 }
287
288 static int mvebu_mbus_alloc_window(struct mvebu_mbus_state *mbus,
289                                    phys_addr_t base, size_t size,
290                                    phys_addr_t remap, u8 target,
291                                    u8 attr)
292 {
293         int win;
294
295         if (remap == MVEBU_MBUS_NO_REMAP) {
296                 for (win = mbus->soc->num_remappable_wins;
297                      win < mbus->soc->num_wins; win++)
298                         if (mvebu_mbus_window_is_free(mbus, win))
299                                 return mvebu_mbus_setup_window(mbus, win, base,
300                                                                size, remap,
301                                                                target, attr);
302         }
303
304
305         for (win = 0; win < mbus->soc->num_wins; win++)
306                 if (mvebu_mbus_window_is_free(mbus, win))
307                         return mvebu_mbus_setup_window(mbus, win, base, size,
308                                                        remap, target, attr);
309
310         return -ENOMEM;
311 }
312
313 /*
314  * Debugfs debugging
315  */
316
317 /* Common function used for Dove, Kirkwood, Armada 370/XP and Orion 5x */
318 static int mvebu_sdram_debug_show_orion(struct mvebu_mbus_state *mbus,
319                                         struct seq_file *seq, void *v)
320 {
321         int i;
322
323         for (i = 0; i < 4; i++) {
324                 u32 basereg = readl(mbus->sdramwins_base + DDR_BASE_CS_OFF(i));
325                 u32 sizereg = readl(mbus->sdramwins_base + DDR_SIZE_CS_OFF(i));
326                 u64 base;
327                 u32 size;
328
329                 if (!(sizereg & DDR_SIZE_ENABLED)) {
330                         seq_printf(seq, "[%d] disabled\n", i);
331                         continue;
332                 }
333
334                 base = ((u64)basereg & DDR_BASE_CS_HIGH_MASK) << 32;
335                 base |= basereg & DDR_BASE_CS_LOW_MASK;
336                 size = (sizereg | ~DDR_SIZE_MASK);
337
338                 seq_printf(seq, "[%d] %016llx - %016llx : cs%d\n",
339                            i, (unsigned long long)base,
340                            (unsigned long long)base + size + 1,
341                            (sizereg & DDR_SIZE_CS_MASK) >> DDR_SIZE_CS_SHIFT);
342         }
343
344         return 0;
345 }
346
347 /* Special function for Dove */
348 static int mvebu_sdram_debug_show_dove(struct mvebu_mbus_state *mbus,
349                                        struct seq_file *seq, void *v)
350 {
351         int i;
352
353         for (i = 0; i < 2; i++) {
354                 u32 map = readl(mbus->sdramwins_base + DOVE_DDR_BASE_CS_OFF(i));
355                 u64 base;
356                 u32 size;
357
358                 if (!(map & 1)) {
359                         seq_printf(seq, "[%d] disabled\n", i);
360                         continue;
361                 }
362
363                 base = map & 0xff800000;
364                 size = 0x100000 << (((map & 0x000f0000) >> 16) - 4);
365
366                 seq_printf(seq, "[%d] %016llx - %016llx : cs%d\n",
367                            i, (unsigned long long)base,
368                            (unsigned long long)base + size, i);
369         }
370
371         return 0;
372 }
373
374 static int mvebu_sdram_debug_show(struct seq_file *seq, void *v)
375 {
376         struct mvebu_mbus_state *mbus = &mbus_state;
377         return mbus->soc->show_cpu_target(mbus, seq, v);
378 }
379
380 static int mvebu_sdram_debug_open(struct inode *inode, struct file *file)
381 {
382         return single_open(file, mvebu_sdram_debug_show, inode->i_private);
383 }
384
385 static const struct file_operations mvebu_sdram_debug_fops = {
386         .open = mvebu_sdram_debug_open,
387         .read = seq_read,
388         .llseek = seq_lseek,
389         .release = single_release,
390 };
391
392 static int mvebu_devs_debug_show(struct seq_file *seq, void *v)
393 {
394         struct mvebu_mbus_state *mbus = &mbus_state;
395         int win;
396
397         for (win = 0; win < mbus->soc->num_wins; win++) {
398                 u64 wbase, wremap;
399                 u32 wsize;
400                 u8 wtarget, wattr;
401                 int enabled;
402
403                 mvebu_mbus_read_window(mbus, win,
404                                        &enabled, &wbase, &wsize,
405                                        &wtarget, &wattr, &wremap);
406
407                 if (!enabled) {
408                         seq_printf(seq, "[%02d] disabled\n", win);
409                         continue;
410                 }
411
412                 seq_printf(seq, "[%02d] %016llx - %016llx : %04x:%04x",
413                            win, (unsigned long long)wbase,
414                            (unsigned long long)(wbase + wsize), wtarget, wattr);
415
416                 if (win < mbus->soc->num_remappable_wins) {
417                         seq_printf(seq, " (remap %016llx)\n",
418                                    (unsigned long long)wremap);
419                 } else
420                         seq_printf(seq, "\n");
421         }
422
423         return 0;
424 }
425
426 static int mvebu_devs_debug_open(struct inode *inode, struct file *file)
427 {
428         return single_open(file, mvebu_devs_debug_show, inode->i_private);
429 }
430
431 static const struct file_operations mvebu_devs_debug_fops = {
432         .open = mvebu_devs_debug_open,
433         .read = seq_read,
434         .llseek = seq_lseek,
435         .release = single_release,
436 };
437
438 /*
439  * SoC-specific functions and definitions
440  */
441
442 static unsigned int orion_mbus_win_offset(int win)
443 {
444         return win << 4;
445 }
446
447 static unsigned int armada_370_xp_mbus_win_offset(int win)
448 {
449         /* The register layout is a bit annoying and the below code
450          * tries to cope with it.
451          * - At offset 0x0, there are the registers for the first 8
452          *   windows, with 4 registers of 32 bits per window (ctrl,
453          *   base, remap low, remap high)
454          * - Then at offset 0x80, there is a hole of 0x10 bytes for
455          *   the internal registers base address and internal units
456          *   sync barrier register.
457          * - Then at offset 0x90, there the registers for 12
458          *   windows, with only 2 registers of 32 bits per window
459          *   (ctrl, base).
460          */
461         if (win < 8)
462                 return win << 4;
463         else
464                 return 0x90 + ((win - 8) << 3);
465 }
466
467 static unsigned int mv78xx0_mbus_win_offset(int win)
468 {
469         if (win < 8)
470                 return win << 4;
471         else
472                 return 0x900 + ((win - 8) << 4);
473 }
474
475 static void __init
476 mvebu_mbus_default_setup_cpu_target(struct mvebu_mbus_state *mbus)
477 {
478         int i;
479         int cs;
480
481         mvebu_mbus_dram_info.mbus_dram_target_id = TARGET_DDR;
482
483         for (i = 0, cs = 0; i < 4; i++) {
484                 u32 base = readl(mbus->sdramwins_base + DDR_BASE_CS_OFF(i));
485                 u32 size = readl(mbus->sdramwins_base + DDR_SIZE_CS_OFF(i));
486
487                 /*
488                  * We only take care of entries for which the chip
489                  * select is enabled, and that don't have high base
490                  * address bits set (devices can only access the first
491                  * 32 bits of the memory).
492                  */
493                 if ((size & DDR_SIZE_ENABLED) &&
494                     !(base & DDR_BASE_CS_HIGH_MASK)) {
495                         struct mbus_dram_window *w;
496
497                         w = &mvebu_mbus_dram_info.cs[cs++];
498                         w->cs_index = i;
499                         w->mbus_attr = 0xf & ~(1 << i);
500                         if (mbus->hw_io_coherency)
501                                 w->mbus_attr |= ATTR_HW_COHERENCY;
502                         w->base = base & DDR_BASE_CS_LOW_MASK;
503                         w->size = (size | ~DDR_SIZE_MASK) + 1;
504                 }
505         }
506         mvebu_mbus_dram_info.num_cs = cs;
507 }
508
509 static void __init
510 mvebu_mbus_dove_setup_cpu_target(struct mvebu_mbus_state *mbus)
511 {
512         int i;
513         int cs;
514
515         mvebu_mbus_dram_info.mbus_dram_target_id = TARGET_DDR;
516
517         for (i = 0, cs = 0; i < 2; i++) {
518                 u32 map = readl(mbus->sdramwins_base + DOVE_DDR_BASE_CS_OFF(i));
519
520                 /*
521                  * Chip select enabled?
522                  */
523                 if (map & 1) {
524                         struct mbus_dram_window *w;
525
526                         w = &mvebu_mbus_dram_info.cs[cs++];
527                         w->cs_index = i;
528                         w->mbus_attr = 0; /* CS address decoding done inside */
529                                           /* the DDR controller, no need to  */
530                                           /* provide attributes */
531                         w->base = map & 0xff800000;
532                         w->size = 0x100000 << (((map & 0x000f0000) >> 16) - 4);
533                 }
534         }
535
536         mvebu_mbus_dram_info.num_cs = cs;
537 }
538
539 static const struct mvebu_mbus_soc_data armada_370_xp_mbus_data = {
540         .num_wins            = 20,
541         .num_remappable_wins = 8,
542         .win_cfg_offset      = armada_370_xp_mbus_win_offset,
543         .setup_cpu_target    = mvebu_mbus_default_setup_cpu_target,
544         .show_cpu_target     = mvebu_sdram_debug_show_orion,
545 };
546
547 static const struct mvebu_mbus_soc_data kirkwood_mbus_data = {
548         .num_wins            = 8,
549         .num_remappable_wins = 4,
550         .win_cfg_offset      = orion_mbus_win_offset,
551         .setup_cpu_target    = mvebu_mbus_default_setup_cpu_target,
552         .show_cpu_target     = mvebu_sdram_debug_show_orion,
553 };
554
555 static const struct mvebu_mbus_soc_data dove_mbus_data = {
556         .num_wins            = 8,
557         .num_remappable_wins = 4,
558         .win_cfg_offset      = orion_mbus_win_offset,
559         .setup_cpu_target    = mvebu_mbus_dove_setup_cpu_target,
560         .show_cpu_target     = mvebu_sdram_debug_show_dove,
561 };
562
563 /*
564  * Some variants of Orion5x have 4 remappable windows, some other have
565  * only two of them.
566  */
567 static const struct mvebu_mbus_soc_data orion5x_4win_mbus_data = {
568         .num_wins            = 8,
569         .num_remappable_wins = 4,
570         .win_cfg_offset      = orion_mbus_win_offset,
571         .setup_cpu_target    = mvebu_mbus_default_setup_cpu_target,
572         .show_cpu_target     = mvebu_sdram_debug_show_orion,
573 };
574
575 static const struct mvebu_mbus_soc_data orion5x_2win_mbus_data = {
576         .num_wins            = 8,
577         .num_remappable_wins = 2,
578         .win_cfg_offset      = orion_mbus_win_offset,
579         .setup_cpu_target    = mvebu_mbus_default_setup_cpu_target,
580         .show_cpu_target     = mvebu_sdram_debug_show_orion,
581 };
582
583 static const struct mvebu_mbus_soc_data mv78xx0_mbus_data = {
584         .num_wins            = 14,
585         .num_remappable_wins = 8,
586         .win_cfg_offset      = mv78xx0_mbus_win_offset,
587         .setup_cpu_target    = mvebu_mbus_default_setup_cpu_target,
588         .show_cpu_target     = mvebu_sdram_debug_show_orion,
589 };
590
591 static const struct of_device_id of_mvebu_mbus_ids[] = {
592         { .compatible = "marvell,armada370-mbus",
593           .data = &armada_370_xp_mbus_data, },
594         { .compatible = "marvell,armadaxp-mbus",
595           .data = &armada_370_xp_mbus_data, },
596         { .compatible = "marvell,kirkwood-mbus",
597           .data = &kirkwood_mbus_data, },
598         { .compatible = "marvell,dove-mbus",
599           .data = &dove_mbus_data, },
600         { .compatible = "marvell,orion5x-88f5281-mbus",
601           .data = &orion5x_4win_mbus_data, },
602         { .compatible = "marvell,orion5x-88f5182-mbus",
603           .data = &orion5x_2win_mbus_data, },
604         { .compatible = "marvell,orion5x-88f5181-mbus",
605           .data = &orion5x_2win_mbus_data, },
606         { .compatible = "marvell,orion5x-88f6183-mbus",
607           .data = &orion5x_4win_mbus_data, },
608         { .compatible = "marvell,mv78xx0-mbus",
609           .data = &mv78xx0_mbus_data, },
610         { },
611 };
612
613 /*
614  * Public API of the driver
615  */
616 int mvebu_mbus_add_window_remap_by_id(unsigned int target,
617                                       unsigned int attribute,
618                                       phys_addr_t base, size_t size,
619                                       phys_addr_t remap)
620 {
621         struct mvebu_mbus_state *s = &mbus_state;
622
623         if (!mvebu_mbus_window_conflicts(s, base, size, target, attribute)) {
624                 pr_err("cannot add window '%x:%x', conflicts with another window\n",
625                        target, attribute);
626                 return -EINVAL;
627         }
628
629         return mvebu_mbus_alloc_window(s, base, size, remap, target, attribute);
630 }
631
632 int mvebu_mbus_add_window_by_id(unsigned int target, unsigned int attribute,
633                                 phys_addr_t base, size_t size)
634 {
635         return mvebu_mbus_add_window_remap_by_id(target, attribute, base,
636                                                  size, MVEBU_MBUS_NO_REMAP);
637 }
638
639 int mvebu_mbus_del_window(phys_addr_t base, size_t size)
640 {
641         int win;
642
643         win = mvebu_mbus_find_window(&mbus_state, base, size);
644         if (win < 0)
645                 return win;
646
647         mvebu_mbus_disable_window(&mbus_state, win);
648         return 0;
649 }
650
651 void mvebu_mbus_get_pcie_mem_aperture(struct resource *res)
652 {
653         if (!res)
654                 return;
655         *res = mbus_state.pcie_mem_aperture;
656 }
657
658 void mvebu_mbus_get_pcie_io_aperture(struct resource *res)
659 {
660         if (!res)
661                 return;
662         *res = mbus_state.pcie_io_aperture;
663 }
664
665 static __init int mvebu_mbus_debugfs_init(void)
666 {
667         struct mvebu_mbus_state *s = &mbus_state;
668
669         /*
670          * If no base has been initialized, doesn't make sense to
671          * register the debugfs entries. We may be on a multiplatform
672          * kernel that isn't running a Marvell EBU SoC.
673          */
674         if (!s->mbuswins_base)
675                 return 0;
676
677         s->debugfs_root = debugfs_create_dir("mvebu-mbus", NULL);
678         if (s->debugfs_root) {
679                 s->debugfs_sdram = debugfs_create_file("sdram", S_IRUGO,
680                                                        s->debugfs_root, NULL,
681                                                        &mvebu_sdram_debug_fops);
682                 s->debugfs_devs = debugfs_create_file("devices", S_IRUGO,
683                                                       s->debugfs_root, NULL,
684                                                       &mvebu_devs_debug_fops);
685         }
686
687         return 0;
688 }
689 fs_initcall(mvebu_mbus_debugfs_init);
690
691 static int __init mvebu_mbus_common_init(struct mvebu_mbus_state *mbus,
692                                          phys_addr_t mbuswins_phys_base,
693                                          size_t mbuswins_size,
694                                          phys_addr_t sdramwins_phys_base,
695                                          size_t sdramwins_size)
696 {
697         struct device_node *np;
698         int win;
699
700         mbus->mbuswins_base = ioremap(mbuswins_phys_base, mbuswins_size);
701         if (!mbus->mbuswins_base)
702                 return -ENOMEM;
703
704         mbus->sdramwins_base = ioremap(sdramwins_phys_base, sdramwins_size);
705         if (!mbus->sdramwins_base) {
706                 iounmap(mbus_state.mbuswins_base);
707                 return -ENOMEM;
708         }
709
710         np = of_find_compatible_node(NULL, NULL, "marvell,coherency-fabric");
711         if (np) {
712                 mbus->hw_io_coherency = 1;
713                 of_node_put(np);
714         }
715
716         for (win = 0; win < mbus->soc->num_wins; win++)
717                 mvebu_mbus_disable_window(mbus, win);
718
719         mbus->soc->setup_cpu_target(mbus);
720
721         return 0;
722 }
723
724 int __init mvebu_mbus_init(const char *soc, phys_addr_t mbuswins_phys_base,
725                            size_t mbuswins_size,
726                            phys_addr_t sdramwins_phys_base,
727                            size_t sdramwins_size)
728 {
729         const struct of_device_id *of_id;
730
731         for (of_id = of_mvebu_mbus_ids; of_id->compatible[0]; of_id++)
732                 if (!strcmp(of_id->compatible, soc))
733                         break;
734
735         if (!of_id->compatible[0]) {
736                 pr_err("could not find a matching SoC family\n");
737                 return -ENODEV;
738         }
739
740         mbus_state.soc = of_id->data;
741
742         return mvebu_mbus_common_init(&mbus_state,
743                         mbuswins_phys_base,
744                         mbuswins_size,
745                         sdramwins_phys_base,
746                         sdramwins_size);
747 }
748
749 #ifdef CONFIG_OF
750 /*
751  * The window IDs in the ranges DT property have the following format:
752  *  - bits 28 to 31: MBus custom field
753  *  - bits 24 to 27: window target ID
754  *  - bits 16 to 23: window attribute ID
755  *  - bits  0 to 15: unused
756  */
757 #define CUSTOM(id) (((id) & 0xF0000000) >> 24)
758 #define TARGET(id) (((id) & 0x0F000000) >> 24)
759 #define ATTR(id)   (((id) & 0x00FF0000) >> 16)
760
761 static int __init mbus_dt_setup_win(struct mvebu_mbus_state *mbus,
762                                     u32 base, u32 size,
763                                     u8 target, u8 attr)
764 {
765         if (!mvebu_mbus_window_conflicts(mbus, base, size, target, attr)) {
766                 pr_err("cannot add window '%04x:%04x', conflicts with another window\n",
767                        target, attr);
768                 return -EBUSY;
769         }
770
771         if (mvebu_mbus_alloc_window(mbus, base, size, MVEBU_MBUS_NO_REMAP,
772                                     target, attr)) {
773                 pr_err("cannot add window '%04x:%04x', too many windows\n",
774                        target, attr);
775                 return -ENOMEM;
776         }
777         return 0;
778 }
779
780 static int __init
781 mbus_parse_ranges(struct device_node *node,
782                   int *addr_cells, int *c_addr_cells, int *c_size_cells,
783                   int *cell_count, const __be32 **ranges_start,
784                   const __be32 **ranges_end)
785 {
786         const __be32 *prop;
787         int ranges_len, tuple_len;
788
789         /* Allow a node with no 'ranges' property */
790         *ranges_start = of_get_property(node, "ranges", &ranges_len);
791         if (*ranges_start == NULL) {
792                 *addr_cells = *c_addr_cells = *c_size_cells = *cell_count = 0;
793                 *ranges_start = *ranges_end = NULL;
794                 return 0;
795         }
796         *ranges_end = *ranges_start + ranges_len / sizeof(__be32);
797
798         *addr_cells = of_n_addr_cells(node);
799
800         prop = of_get_property(node, "#address-cells", NULL);
801         *c_addr_cells = be32_to_cpup(prop);
802
803         prop = of_get_property(node, "#size-cells", NULL);
804         *c_size_cells = be32_to_cpup(prop);
805
806         *cell_count = *addr_cells + *c_addr_cells + *c_size_cells;
807         tuple_len = (*cell_count) * sizeof(__be32);
808
809         if (ranges_len % tuple_len) {
810                 pr_warn("malformed ranges entry '%s'\n", node->name);
811                 return -EINVAL;
812         }
813         return 0;
814 }
815
816 static int __init mbus_dt_setup(struct mvebu_mbus_state *mbus,
817                                 struct device_node *np)
818 {
819         int addr_cells, c_addr_cells, c_size_cells;
820         int i, ret, cell_count;
821         const __be32 *r, *ranges_start, *ranges_end;
822
823         ret = mbus_parse_ranges(np, &addr_cells, &c_addr_cells,
824                                 &c_size_cells, &cell_count,
825                                 &ranges_start, &ranges_end);
826         if (ret < 0)
827                 return ret;
828
829         for (i = 0, r = ranges_start; r < ranges_end; r += cell_count, i++) {
830                 u32 windowid, base, size;
831                 u8 target, attr;
832
833                 /*
834                  * An entry with a non-zero custom field do not
835                  * correspond to a static window, so skip it.
836                  */
837                 windowid = of_read_number(r, 1);
838                 if (CUSTOM(windowid))
839                         continue;
840
841                 target = TARGET(windowid);
842                 attr = ATTR(windowid);
843
844                 base = of_read_number(r + c_addr_cells, addr_cells);
845                 size = of_read_number(r + c_addr_cells + addr_cells,
846                                       c_size_cells);
847                 ret = mbus_dt_setup_win(mbus, base, size, target, attr);
848                 if (ret < 0)
849                         return ret;
850         }
851         return 0;
852 }
853
854 static void __init mvebu_mbus_get_pcie_resources(struct device_node *np,
855                                                  struct resource *mem,
856                                                  struct resource *io)
857 {
858         u32 reg[2];
859         int ret;
860
861         /*
862          * These are optional, so we make sure that resource_size(x) will
863          * return 0.
864          */
865         memset(mem, 0, sizeof(struct resource));
866         mem->end = -1;
867         memset(io, 0, sizeof(struct resource));
868         io->end = -1;
869
870         ret = of_property_read_u32_array(np, "pcie-mem-aperture", reg, ARRAY_SIZE(reg));
871         if (!ret) {
872                 mem->start = reg[0];
873                 mem->end = mem->start + reg[1];
874                 mem->flags = IORESOURCE_MEM;
875         }
876
877         ret = of_property_read_u32_array(np, "pcie-io-aperture", reg, ARRAY_SIZE(reg));
878         if (!ret) {
879                 io->start = reg[0];
880                 io->end = io->start + reg[1];
881                 io->flags = IORESOURCE_IO;
882         }
883 }
884
885 int __init mvebu_mbus_dt_init(void)
886 {
887         struct resource mbuswins_res, sdramwins_res;
888         struct device_node *np, *controller;
889         const struct of_device_id *of_id;
890         const __be32 *prop;
891         int ret;
892
893         np = of_find_matching_node(NULL, of_mvebu_mbus_ids);
894         if (!np) {
895                 pr_err("could not find a matching SoC family\n");
896                 return -ENODEV;
897         }
898
899         of_id = of_match_node(of_mvebu_mbus_ids, np);
900         mbus_state.soc = of_id->data;
901
902         prop = of_get_property(np, "controller", NULL);
903         if (!prop) {
904                 pr_err("required 'controller' property missing\n");
905                 return -EINVAL;
906         }
907
908         controller = of_find_node_by_phandle(be32_to_cpup(prop));
909         if (!controller) {
910                 pr_err("could not find an 'mbus-controller' node\n");
911                 return -ENODEV;
912         }
913
914         if (of_address_to_resource(controller, 0, &mbuswins_res)) {
915                 pr_err("cannot get MBUS register address\n");
916                 return -EINVAL;
917         }
918
919         if (of_address_to_resource(controller, 1, &sdramwins_res)) {
920                 pr_err("cannot get SDRAM register address\n");
921                 return -EINVAL;
922         }
923
924         /* Get optional pcie-{mem,io}-aperture properties */
925         mvebu_mbus_get_pcie_resources(np, &mbus_state.pcie_mem_aperture,
926                                           &mbus_state.pcie_io_aperture);
927
928         ret = mvebu_mbus_common_init(&mbus_state,
929                                      mbuswins_res.start,
930                                      resource_size(&mbuswins_res),
931                                      sdramwins_res.start,
932                                      resource_size(&sdramwins_res));
933         if (ret)
934                 return ret;
935
936         /* Setup statically declared windows in the DT */
937         return mbus_dt_setup(&mbus_state, np);
938 }
939 #endif