2 * AXS101/AXS103 Software Development Platform
4 * Copyright (C) 2013-15 Synopsys, Inc. (www.synopsys.com)
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.
17 #include <linux/of_platform.h>
19 #include <asm/asm-offsets.h>
22 #include <asm/mach_desc.h>
25 #define AXS_MB_CGU 0xE0010000
26 #define AXS_MB_CREG 0xE0011000
28 #define CREG_MB_IRQ_MUX (AXS_MB_CREG + 0x214)
29 #define CREG_MB_SW_RESET (AXS_MB_CREG + 0x220)
30 #define CREG_MB_VER (AXS_MB_CREG + 0x230)
31 #define CREG_MB_CONFIG (AXS_MB_CREG + 0x234)
33 #define AXC001_CREG 0xF0001000
34 #define AXC001_GPIO_INTC 0xF0003000
36 static void __init
axs10x_enable_gpio_intc_wire(void)
39 * Peripherals on CPU Card and Mother Board are wired to cpu intc via
40 * intermediate DW APB GPIO blocks (mainly for debouncing)
42 * ---------------------
43 * | snps,arc700-intc |
44 * ---------------------
46 * ------------------- -------------------
47 * | snps,dw-apb-gpio | | snps,dw-apb-gpio |
48 * ------------------- -------------------
50 * | [ Debug UART on cpu card ]
52 * ------------------------
53 * | snps,dw-apb-intc (MB)|
54 * ------------------------
56 * [eth] [uart] [... other perip on Main Board]
58 * Current implementation of "irq-dw-apb-ictl" driver doesn't work well
59 * with stacked INTCs. In particular problem happens if its master INTC
60 * not yet instantiated. See discussion here -
61 * https://lkml.org/lkml/2015/3/4/755
63 * So setup the first gpio block as a passive pass thru and hide it from
64 * DT hardware topology - connect MB intc directly to cpu intc
65 * The GPIO "wire" needs to be init nevertheless (here)
67 * One side adv is that peripheral interrupt handling avoids one nested
70 #define GPIO_INTEN (AXC001_GPIO_INTC + 0x30)
71 #define GPIO_INTMASK (AXC001_GPIO_INTC + 0x34)
72 #define GPIO_INTTYPE_LEVEL (AXC001_GPIO_INTC + 0x38)
73 #define GPIO_INT_POLARITY (AXC001_GPIO_INTC + 0x3c)
74 #define MB_TO_GPIO_IRQ 12
76 iowrite32(~(1 << MB_TO_GPIO_IRQ
), (void __iomem
*) GPIO_INTMASK
);
77 iowrite32(0, (void __iomem
*) GPIO_INTTYPE_LEVEL
);
78 iowrite32(~0, (void __iomem
*) GPIO_INT_POLARITY
);
79 iowrite32(1 << MB_TO_GPIO_IRQ
, (void __iomem
*) GPIO_INTEN
);
82 static inline void __init
83 write_cgu_reg(uint32_t value
, void __iomem
*reg
, void __iomem
*lock_reg
)
85 unsigned int loops
= 128 * 1024, ctr
;
87 iowrite32(value
, reg
);
90 while (((ioread32(lock_reg
) & 1) == 1) && ctr
--) /* wait for unlock */
94 while (((ioread32(lock_reg
) & 1) == 0) && ctr
--) /* wait for re-lock */
98 static void __init
axs10x_print_board_ver(unsigned int creg
, const char *str
)
102 #ifdef CONFIG_CPU_BIG_ENDIAN
103 unsigned int pad
:11, y
:12, m
:4, d
:5;
105 unsigned int d
:5, m
:4, y
:12, pad
:11;
111 board
.val
= ioread32((void __iomem
*)creg
);
112 pr_info("AXS: %s FPGA Date: %u-%u-%u\n", str
, board
.d
, board
.m
,
116 static void __init
axs10x_early_init(void)
121 /* Determine motherboard version */
122 if (ioread32((void __iomem
*) CREG_MB_CONFIG
) & (1 << 28))
123 mb_rev
= 3; /* HT-3 (rev3.0) */
125 mb_rev
= 2; /* HT-2 (rev2.0) */
127 axs10x_enable_gpio_intc_wire();
129 scnprintf(mb
, 32, "MainBoard v%d", mb_rev
);
130 axs10x_print_board_ver(CREG_MB_VER
, mb
);
135 #define CREG_CPU_ADDR_770 (AXC001_CREG + 0x20)
136 #define CREG_CPU_ADDR_TUNN (AXC001_CREG + 0x60)
137 #define CREG_CPU_ADDR_770_UPD (AXC001_CREG + 0x34)
138 #define CREG_CPU_ADDR_TUNN_UPD (AXC001_CREG + 0x74)
140 #define CREG_CPU_ARC770_IRQ_MUX (AXC001_CREG + 0x114)
141 #define CREG_CPU_GPIO_UART_MUX (AXC001_CREG + 0x120)
144 * Set up System Memory Map for ARC cpu / peripherals controllers
146 * Each AXI master has a 4GB memory map specified as 16 apertures of 256MB, each
147 * of which maps to a corresponding 256MB aperture in Target slave memory map.
149 * e.g. ARC cpu AXI Master's aperture 8 (0x8000_0000) is mapped to aperture 0
150 * (0x0000_0000) of DDR Port 0 (slave #1)
152 * Access from cpu to MB controllers such as GMAC is setup using AXI Tunnel:
153 * which has master/slaves on both ends.
154 * e.g. aperture 14 (0xE000_0000) of ARC cpu is mapped to aperture 14
155 * (0xE000_0000) of CPU Card AXI Tunnel slave (slave #3) which is mapped to
156 * MB AXI Tunnel Master, which also has a mem map setup
158 * In the reverse direction, MB AXI Masters (e.g. GMAC) mem map is setup
159 * to map to MB AXI Tunnel slave which connects to CPU Card AXI Tunnel Master
162 unsigned int slave_sel
:4, slave_off
:4, pad
:24;
165 /* CPU Card target slaves */
166 #define AXC001_SLV_NONE 0
167 #define AXC001_SLV_DDR_PORT0 1
168 #define AXC001_SLV_SRAM 2
169 #define AXC001_SLV_AXI_TUNNEL 3
170 #define AXC001_SLV_AXI2APB 6
171 #define AXC001_SLV_DDR_PORT1 7
173 /* MB AXI Target slaves */
174 #define AXS_MB_SLV_NONE 0
175 #define AXS_MB_SLV_AXI_TUNNEL_CPU 1
176 #define AXS_MB_SLV_AXI_TUNNEL_HAPS 2
177 #define AXS_MB_SLV_SRAM 3
178 #define AXS_MB_SLV_CONTROL 4
181 #define AXS_MB_MST_TUNNEL_CPU 0
182 #define AXS_MB_MST_USB_OHCI 10
185 * memmap for ARC core on CPU Card
187 static const struct aperture axc001_memmap
[16] = {
188 {AXC001_SLV_AXI_TUNNEL
, 0x0},
189 {AXC001_SLV_AXI_TUNNEL
, 0x1},
190 {AXC001_SLV_SRAM
, 0x0}, /* 0x2000_0000: Local SRAM */
191 {AXC001_SLV_NONE
, 0x0},
192 {AXC001_SLV_NONE
, 0x0},
193 {AXC001_SLV_NONE
, 0x0},
194 {AXC001_SLV_NONE
, 0x0},
195 {AXC001_SLV_NONE
, 0x0},
196 {AXC001_SLV_DDR_PORT0
, 0x0}, /* 0x8000_0000: DDR 0..256M */
197 {AXC001_SLV_DDR_PORT0
, 0x1}, /* 0x9000_0000: DDR 256..512M */
198 {AXC001_SLV_DDR_PORT0
, 0x2},
199 {AXC001_SLV_DDR_PORT0
, 0x3},
200 {AXC001_SLV_NONE
, 0x0},
201 {AXC001_SLV_AXI_TUNNEL
, 0xD},
202 {AXC001_SLV_AXI_TUNNEL
, 0xE}, /* MB: CREG, CGU... */
203 {AXC001_SLV_AXI2APB
, 0x0}, /* CPU Card local CREG, CGU... */
207 * memmap for CPU Card AXI Tunnel Master (for access by MB controllers)
208 * GMAC (MB) -> MB AXI Tunnel slave -> CPU Card AXI Tunnel Master -> DDR
210 static const struct aperture axc001_axi_tunnel_memmap
[16] = {
211 {AXC001_SLV_AXI_TUNNEL
, 0x0},
212 {AXC001_SLV_AXI_TUNNEL
, 0x1},
213 {AXC001_SLV_SRAM
, 0x0},
214 {AXC001_SLV_NONE
, 0x0},
215 {AXC001_SLV_NONE
, 0x0},
216 {AXC001_SLV_NONE
, 0x0},
217 {AXC001_SLV_NONE
, 0x0},
218 {AXC001_SLV_NONE
, 0x0},
219 {AXC001_SLV_DDR_PORT1
, 0x0},
220 {AXC001_SLV_DDR_PORT1
, 0x1},
221 {AXC001_SLV_DDR_PORT1
, 0x2},
222 {AXC001_SLV_DDR_PORT1
, 0x3},
223 {AXC001_SLV_NONE
, 0x0},
224 {AXC001_SLV_AXI_TUNNEL
, 0xD},
225 {AXC001_SLV_AXI_TUNNEL
, 0xE},
226 {AXC001_SLV_AXI2APB
, 0x0},
230 * memmap for MB AXI Masters
231 * Same mem map for all perip controllers as well as MB AXI Tunnel Master
233 static const struct aperture axs_mb_memmap
[16] = {
234 {AXS_MB_SLV_SRAM
, 0x0},
235 {AXS_MB_SLV_SRAM
, 0x0},
236 {AXS_MB_SLV_NONE
, 0x0},
237 {AXS_MB_SLV_NONE
, 0x0},
238 {AXS_MB_SLV_NONE
, 0x0},
239 {AXS_MB_SLV_NONE
, 0x0},
240 {AXS_MB_SLV_NONE
, 0x0},
241 {AXS_MB_SLV_NONE
, 0x0},
242 {AXS_MB_SLV_AXI_TUNNEL_CPU
, 0x8}, /* DDR on CPU Card */
243 {AXS_MB_SLV_AXI_TUNNEL_CPU
, 0x9}, /* DDR on CPU Card */
244 {AXS_MB_SLV_AXI_TUNNEL_CPU
, 0xA},
245 {AXS_MB_SLV_AXI_TUNNEL_CPU
, 0xB},
246 {AXS_MB_SLV_NONE
, 0x0},
247 {AXS_MB_SLV_AXI_TUNNEL_HAPS
, 0xD},
248 {AXS_MB_SLV_CONTROL
, 0x0}, /* MB Local CREG, CGU... */
249 {AXS_MB_SLV_AXI_TUNNEL_CPU
, 0xF},
252 static noinline
void __init
253 axs101_set_memmap(void __iomem
*base
, const struct aperture map
[16])
255 unsigned int slave_select
, slave_offset
;
258 slave_select
= slave_offset
= 0;
259 for (i
= 0; i
< 8; i
++) {
260 slave_select
|= map
[i
].slave_sel
<< (i
<< 2);
261 slave_offset
|= map
[i
].slave_off
<< (i
<< 2);
264 iowrite32(slave_select
, base
+ 0x0); /* SLV0 */
265 iowrite32(slave_offset
, base
+ 0x8); /* OFFSET0 */
267 slave_select
= slave_offset
= 0;
268 for (i
= 0; i
< 8; i
++) {
269 slave_select
|= map
[i
+8].slave_sel
<< (i
<< 2);
270 slave_offset
|= map
[i
+8].slave_off
<< (i
<< 2);
273 iowrite32(slave_select
, base
+ 0x4); /* SLV1 */
274 iowrite32(slave_offset
, base
+ 0xC); /* OFFSET1 */
277 static void __init
axs101_early_init(void)
281 /* ARC 770D memory view */
282 axs101_set_memmap((void __iomem
*) CREG_CPU_ADDR_770
, axc001_memmap
);
283 iowrite32(1, (void __iomem
*) CREG_CPU_ADDR_770_UPD
);
285 /* AXI tunnel memory map (incoming traffic from MB into CPU Card */
286 axs101_set_memmap((void __iomem
*) CREG_CPU_ADDR_TUNN
,
287 axc001_axi_tunnel_memmap
);
288 iowrite32(1, (void __iomem
*) CREG_CPU_ADDR_TUNN_UPD
);
290 /* MB peripherals memory map */
291 for (i
= AXS_MB_MST_TUNNEL_CPU
; i
<= AXS_MB_MST_USB_OHCI
; i
++)
292 axs101_set_memmap((void __iomem
*) AXS_MB_CREG
+ (i
<< 4),
295 iowrite32(0x3ff, (void __iomem
*) AXS_MB_CREG
+ 0x100); /* Update */
297 /* GPIO pins 18 and 19 are used as UART rx and tx, respectively. */
298 iowrite32(0x01, (void __iomem
*) CREG_CPU_GPIO_UART_MUX
);
300 /* Set up the MB interrupt system: mux interrupts to GPIO7) */
301 iowrite32(0x01, (void __iomem
*) CREG_MB_IRQ_MUX
);
303 /* reset ethernet and ULPI interfaces */
304 iowrite32(0x18, (void __iomem
*) CREG_MB_SW_RESET
);
306 /* map GPIO 14:10 to ARC 9:5 (IRQ mux change for MB v2 onwards) */
307 iowrite32(0x52, (void __iomem
*) CREG_CPU_ARC770_IRQ_MUX
);
312 #endif /* CONFIG_AXS101 */
316 #define AXC003_CGU 0xF0000000
317 #define AXC003_CREG 0xF0001000
318 #define AXC003_MST_AXI_TUNNEL 0
319 #define AXC003_MST_HS38 1
321 #define CREG_CPU_AXI_M0_IRQ_MUX (AXC003_CREG + 0x440)
322 #define CREG_CPU_GPIO_UART_MUX (AXC003_CREG + 0x480)
323 #define CREG_CPU_TUN_IO_CTRL (AXC003_CREG + 0x494)
328 #ifdef CONFIG_CPU_BIG_ENDIAN
329 unsigned int pad
:17, noupd
:1, bypass
:1, edge
:1, high
:6, low
:6;
331 unsigned int low
:6, high
:6, edge
:1, bypass
:1, noupd
:1, pad
:17;
337 static unsigned int __init
axs103_get_freq(void)
339 union pll_reg idiv
, fbdiv
, odiv
;
340 unsigned int f
= 33333333;
342 idiv
.val
= ioread32((void __iomem
*)AXC003_CGU
+ 0x80 + 0);
343 fbdiv
.val
= ioread32((void __iomem
*)AXC003_CGU
+ 0x80 + 4);
344 odiv
.val
= ioread32((void __iomem
*)AXC003_CGU
+ 0x80 + 8);
346 if (idiv
.bypass
!= 1)
347 f
= f
/ (idiv
.low
+ idiv
.high
);
349 if (fbdiv
.bypass
!= 1)
350 f
= f
* (fbdiv
.low
+ fbdiv
.high
);
352 if (odiv
.bypass
!= 1)
353 f
= f
/ (odiv
.low
+ odiv
.high
);
355 f
= (f
+ 500000) / 1000000; /* Rounding */
359 static inline unsigned int __init
encode_div(unsigned int id
, int upd
)
366 div
.bypass
= id
== 1 ? 1 : 0;
367 div
.edge
= (id
%2 == 0) ? 0 : 1; /* 0 = rising */
368 div
.low
= (id
%2 == 0) ? id
>> 1 : (id
>> 1)+1;
374 noinline
static void __init
375 axs103_set_freq(unsigned int id
, unsigned int fd
, unsigned int od
)
377 write_cgu_reg(encode_div(id
, 0),
378 (void __iomem
*)AXC003_CGU
+ 0x80 + 0,
379 (void __iomem
*)AXC003_CGU
+ 0x110);
381 write_cgu_reg(encode_div(fd
, 0),
382 (void __iomem
*)AXC003_CGU
+ 0x80 + 4,
383 (void __iomem
*)AXC003_CGU
+ 0x110);
385 write_cgu_reg(encode_div(od
, 1),
386 (void __iomem
*)AXC003_CGU
+ 0x80 + 8,
387 (void __iomem
*)AXC003_CGU
+ 0x110);
390 static void __init
axs103_early_init(void)
393 * AXS103 configurations for SMP/QUAD configurations share device tree
394 * which defaults to 90 MHz. However recent failures of Quad config
395 * revealed P&R timing violations so clamp it down to safe 50 MHz
396 * Instead of duplicating defconfig/DT for SMP/QUAD, add a small hack
398 * This hack is really hacky as of now. Fix it properly by getting the
399 * number of cores as return value of platform's early SMP callback
401 #ifdef CONFIG_ARC_MCIP
402 unsigned int num_cores
= (read_aux_reg(ARC_REG_MCIP_BCR
) >> 16) & 0x3F;
404 arc_set_core_freq(50 * 1000000);
405 else if (num_cores
== 2)
406 arc_set_core_freq(75 * 1000000);
409 switch (arc_get_core_freq()/1000000) {
411 axs103_set_freq(1, 1, 1);
414 axs103_set_freq(1, 30, 20);
417 axs103_set_freq(2, 45, 10);
420 axs103_set_freq(2, 54, 10);
423 axs103_set_freq(1, 30, 10);
426 axs103_set_freq(2, 45, 6);
430 * In this case, core_frequency derived from
431 * DT "clock-frequency" might not match with board value.
432 * Hence update it to match the board value.
434 arc_set_core_freq(axs103_get_freq() * 1000000);
438 pr_info("Freq is %dMHz\n", axs103_get_freq());
440 /* Memory maps already config in pre-bootloader */
442 /* set GPIO mux to UART */
443 iowrite32(0x01, (void __iomem
*) CREG_CPU_GPIO_UART_MUX
);
445 iowrite32((0x00100000U
| 0x000C0000U
| 0x00003322U
),
446 (void __iomem
*) CREG_CPU_TUN_IO_CTRL
);
448 /* Set up the AXS_MB interrupt system.*/
449 iowrite32(12, (void __iomem
*) (CREG_CPU_AXI_M0_IRQ_MUX
450 + (AXC003_MST_HS38
<< 2)));
452 /* connect ICTL - Main Board with GPIO line */
453 iowrite32(0x01, (void __iomem
*) CREG_MB_IRQ_MUX
);
455 axs10x_print_board_ver(AXC003_CREG
+ 4088, "AXC003 CPU Card");
463 static const char *axs101_compat
[] __initconst
= {
468 MACHINE_START(AXS101
, "axs101")
469 .dt_compat
= axs101_compat
,
470 .init_early
= axs101_early_init
,
473 #endif /* CONFIG_AXS101 */
477 static const char *axs103_compat
[] __initconst
= {
482 MACHINE_START(AXS103
, "axs103")
483 .dt_compat
= axs103_compat
,
484 .init_early
= axs103_early_init
,
488 * For the VDK OS-kit, to get the offset to pid and command fields
490 char coware_swa_pid_offset
[TASK_PID
];
491 char coware_swa_comm_offset
[TASK_COMM
];
493 #endif /* CONFIG_AXS103 */