]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arc/plat-arcfpga/platform.c
ARC: [Review] Multi-platform image #2: Board callback Infrastructure
[mirror_ubuntu-artful-kernel.git] / arch / arc / plat-arcfpga / platform.c
CommitLineData
c121c506
VG
1/*
2 * ARC FPGA Platform support code
3 *
4 * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
5 *
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.
9 */
10
11#include <linux/types.h>
12#include <linux/init.h>
ee36d172 13#include <linux/device.h>
c121c506 14#include <linux/platform_device.h>
7fadc1e8 15#include <linux/io.h>
ee36d172 16#include <linux/console.h>
abe11dde 17#include <linux/of_platform.h>
ee36d172
VG
18#include <asm/setup.h>
19#include <asm/irq.h>
20#include <asm/clk.h>
21#include <plat/memmap.h>
22
7fadc1e8
VG
23/*-----------------------BVCI Latency Unit -----------------------------*/
24
25#ifdef CONFIG_ARC_HAS_BVCI_LAT_UNIT
26
27int lat_cycles = CONFIG_BVCI_LAT_CYCLES;
28
29/* BVCI Bus Profiler: Latency Unit */
30static void __init setup_bvci_lat_unit(void)
31{
32#define MAX_BVCI_UNITS 12
33
34 unsigned int i;
35 unsigned int *base = (unsigned int *)BVCI_LAT_UNIT_BASE;
36 const unsigned long units_req = CONFIG_BVCI_LAT_UNITS;
37 const unsigned int REG_UNIT = 21;
38 const unsigned int REG_VAL = 22;
39
40 /*
41 * There are multiple Latency Units corresponding to the many
42 * interfaces of the system bus arbiter (both CPU side as well as
43 * the peripheral side).
44 *
45 * Unit 0 - System Arb and Mem Controller - adds latency to all
46 * memory trasactions
47 * Unit 1 - I$ and System Bus
48 * Unit 2 - D$ and System Bus
49 * ..
50 * Unit 12 - IDE Disk controller and System Bus
51 *
52 * The programmers model requires writing to lat_unit reg first
53 * and then the latency value (cycles) to lat_value reg
54 */
55
56 if (CONFIG_BVCI_LAT_UNITS == 0) {
57 writel(0, base + REG_UNIT);
58 writel(lat_cycles, base + REG_VAL);
59 pr_info("BVCI Latency for all Memory Transactions %d cycles\n",
60 lat_cycles);
61 } else {
62 for_each_set_bit(i, &units_req, MAX_BVCI_UNITS) {
63 writel(i + 1, base + REG_UNIT); /* loop is 0 based */
64 writel(lat_cycles, base + REG_VAL);
65 pr_info("BVCI Latency for Unit[%d] = %d cycles\n",
66 (i + 1), lat_cycles);
67 }
68 }
69}
70#else
71static void __init setup_bvci_lat_unit(void)
72{
73}
74#endif
75
ee36d172
VG
76/*----------------------- Platform Devices -----------------------------*/
77
ee36d172 78static unsigned long arc_uart_info[] = {
abe11dde
VG
79 0, /* uart->is_emulated (runtime @running_on_hw) */
80 0, /* uart->port.uartclk */
81 0, /* uart->baud */
ee36d172
VG
82 0
83};
84
abe11dde
VG
85#if defined(CONFIG_SERIAL_ARC_CONSOLE)
86/*
87 * static platform data - but only for early serial
88 * TBD: derive this from a special DT node
89 */
90static struct resource arc_uart0_res[] = {
91 {
92 .start = UART0_BASE,
93 .end = UART0_BASE + 0xFF,
94 .flags = IORESOURCE_MEM,
95 },
96 {
97 .start = UART0_IRQ,
98 .end = UART0_IRQ,
99 .flags = IORESOURCE_IRQ,
100 },
101};
ee36d172 102
abe11dde
VG
103static struct platform_device arc_uart0_dev = {
104 .name = "arc-uart",
105 .id = 0,
106 .num_resources = ARRAY_SIZE(arc_uart0_res),
107 .resource = arc_uart0_res,
108 .dev = {
109 .platform_data = &arc_uart_info,
110 },
111};
ee36d172
VG
112
113static struct platform_device *fpga_early_devs[] __initdata = {
ee36d172 114 &arc_uart0_dev,
ee36d172 115};
abe11dde 116#endif
ee36d172
VG
117
118static void arc_fpga_serial_init(void)
119{
abe11dde
VG
120 /* To let driver workaround ISS bug: baudh Reg can't be set to 0 */
121 arc_uart_info[0] = !running_on_hw;
122
ee36d172
VG
123 arc_uart_info[1] = arc_get_core_freq();
124
abe11dde 125 arc_uart_info[2] = CONFIG_ARC_SERIAL_BAUD;
ee36d172 126
abe11dde 127#if defined(CONFIG_SERIAL_ARC_CONSOLE)
ee36d172
VG
128 early_platform_add_devices(fpga_early_devs,
129 ARRAY_SIZE(fpga_early_devs));
130
131 /*
132 * ARC console driver registers itself as an early platform driver
133 * of class "earlyprintk".
134 * Install it here, followed by probe of devices.
135 * The installation here doesn't require earlyprintk in command line
136 * To do so however, replace the lines below with
137 * parse_early_param();
138 * early_platform_driver_probe("earlyprintk", 1, 1);
139 * ^^
140 */
141 early_platform_driver_register_all("earlyprintk");
142 early_platform_driver_probe("earlyprintk", 1, 0);
143
144 /*
145 * This is to make sure that arc uart would be preferred console
146 * despite one/more of following:
147 * -command line lacked "console=ttyARC0" or
148 * -CONFIG_VT_CONSOLE was enabled (for no reason whatsoever)
149 * Note that this needs to be done after above early console is reg,
150 * otherwise the early console never gets a chance to run.
151 */
152 add_preferred_console("ttyARC", 0, "115200");
abe11dde 153#endif
ee36d172
VG
154}
155
c121c506
VG
156/*
157 * Early Platform Initialization called from setup_arch()
158 */
159void __init arc_platform_early_init(void)
160{
161 pr_info("[plat-arcfpga]: registering early dev resources\n");
ee36d172 162
7fadc1e8
VG
163 setup_bvci_lat_unit();
164
ee36d172 165 arc_fpga_serial_init();
c121c506
VG
166}
167
abe11dde 168static struct of_dev_auxdata plat_auxdata_lookup[] __initdata = {
ee36d172 169#if defined(CONFIG_SERIAL_ARC) || defined(CONFIG_SERIAL_ARC_MODULE)
abe11dde 170 OF_DEV_AUXDATA("snps,arc-uart", UART0_BASE, "arc-uart", arc_uart_info),
ee36d172 171#endif
abe11dde 172 {}
ee36d172
VG
173};
174
c121c506
VG
175int __init fpga_plat_init(void)
176{
177 pr_info("[plat-arcfpga]: registering device resources\n");
178
abe11dde
VG
179 /*
180 * Traverses flattened DeviceTree - registering platform devices
181 * complete with their resources
182 */
183 of_platform_populate(NULL, of_default_bus_match_table,
184 plat_auxdata_lookup, NULL);
ee36d172 185
c121c506
VG
186 return 0;
187}
188arch_initcall(fpga_plat_init);