blob: 7643df5759a4fe29f4e16b2cf00c963dfa12abdd [file] [log] [blame]
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +01001/* Interface for accessing Gaisler AMBA Plug&Play Bus.
2 * The AHB bus can be interfaced with a simpler bus -
3 * the APB bus, also freely available in GRLIB at
4 * www.gaisler.com.
5 *
Daniel Hellstrom898cc812010-01-25 09:54:51 +01006 * (C) Copyright 2009, 2015
7 * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com.
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +01008 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +010010 */
11
12#ifndef __AMBAPP_H__
13#define __AMBAPP_H__
14
Daniel Hellstrom898cc812010-01-25 09:54:51 +010015#include <ambapp_ids.h>
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +010016
17#ifndef __ASSEMBLER__
Daniel Hellstrom898cc812010-01-25 09:54:51 +010018/* Structures used to access Plug&Play information directly */
19struct ambapp_pnp_ahb {
20 const unsigned int id; /* VENDOR, DEVICE, VER, IRQ, */
21 const unsigned int custom[3];
22 const unsigned int mbar[4]; /* MASK, ADDRESS, TYPE,
23 * CACHABLE/PREFETCHABLE */
24};
25
26struct ambapp_pnp_apb {
27 const unsigned int id; /* VENDOR, DEVICE, VER, IRQ, */
28 const unsigned int iobar; /* MASK, ADDRESS, TYPE,
29 * CACHABLE/PREFETCHABLE */
30};
31
32/* AMBA Plug&Play AHB Masters & Slaves information locations
33 * Max devices is 64 supported by HW, however often only 16
34 * are used.
35 */
36struct ambapp_pnp_info {
37 struct ambapp_pnp_ahb masters[64];
38 struct ambapp_pnp_ahb slaves[63];
39 const unsigned int unused[4];
40 const unsigned int systemid[4];
41};
42
43/* Describes a AMBA PnP bus */
44struct ambapp_bus {
45 int buses; /* Number of buses */
46 unsigned int ioareas[6]; /* PnP I/O AREAs of AHB buses */
47 unsigned int freq; /* Frequency of bus0 [Hz] */
48};
49
50/* Processor Local AMBA bus */
51extern struct ambapp_bus ambapp_plb;
52
53/* Get Bus frequency of a certain AMBA bus */
54extern unsigned int ambapp_bus_freq(
55 struct ambapp_bus *abus,
56 int ahb_bus_index
57 );
58
59/* AMBA PnP information of a APB Device */
60typedef struct {
61 unsigned int vendor;
62 unsigned int device;
63 unsigned char irq;
64 unsigned char ver;
65 unsigned int address;
66 unsigned int mask;
67 int ahb_bus_index;
68} ambapp_apbdev;
69
70/* AMBA PnP information of a AHB Device */
71typedef struct {
72 unsigned int vendor;
73 unsigned int device;
74 unsigned char irq;
75 unsigned char ver;
76 unsigned int userdef[3];
77 unsigned int address[4];
78 unsigned int mask[4];
79 int type[4];
80 int ahb_bus_index;
81} ambapp_ahbdev;
82
83/* Scan AMBA Bus for AHB Bridges */
84extern void ambapp_bus_init(
85 unsigned int ioarea,
86 unsigned int freq,
87 struct ambapp_bus *abus);
88
89/* Find APB Slave device by index using breath first search.
90 *
91 * When vendor and device are both set to zero, any device
92 * with a non-zero device ID will match the search. It may be
93 * useful when processing all devices on a AMBA bus.
94 */
95extern int ambapp_apb_find(
96 struct ambapp_bus *abus,
97 int vendor,
98 int device,
99 int index,
100 ambapp_apbdev *dev
101 );
102
103/* Find AHB Master device by index using breath first search.
104 *
105 * When vendor and device are both set to zero, any device
106 * with a non-zero device ID will match the search. It may be
107 * useful when processing all devices on a AMBA bus.
108 */
109extern int ambapp_ahbmst_find(
110 struct ambapp_bus *abus,
111 int vendor,
112 int device,
113 int index,
114 ambapp_ahbdev *dev
115 );
116
117/* Find AHB Slave device by index using breath first search.
118 *
119 * When vendor and device are both set to zero, any device
120 * with a non-zero device ID will match the search. It may be
121 * useful when processing all devices on a AMBA bus.
122 */
123extern int ambapp_ahbslv_find(
124 struct ambapp_bus *abus,
125 int vendor,
126 int device,
127 int index,
128 ambapp_ahbdev *dev
129 );
130
131/* Return number of APB Slave devices of a certain ID (VENDOR:DEVICE)
132 * zero is returned if no devices was found.
133 */
134extern int ambapp_apb_count(struct ambapp_bus *abus, int vendor, int device);
135
136/* Return number of AHB Master devices of a certain ID (VENDOR:DEVICE)
137 * zero is returned if no devices was found.
138 */
139extern int ambapp_ahbmst_count(struct ambapp_bus *abus, int vendor, int device);
140
141/* Return number of AHB Slave devices of a certain ID (VENDOR:DEVICE)
142 * zero is returned if no devices was found.
143 */
144extern int ambapp_ahbslv_count(struct ambapp_bus *abus, int vendor, int device);
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100145
Daniel Hellstrom2a2fa792008-03-26 23:00:38 +0100146#ifdef CONFIG_CMD_AMBAPP
147
148/* AMBA Plug&Play relocation & initialization */
149int ambapp_init_reloc(void);
150
151/* AMBA Plug&Play Name of Vendors and devices */
152
153/* Return name of device */
154char *ambapp_device_id2str(int vendor, int id);
155
156/* Return name of vendor */
157char *ambapp_vendor_id2str(int vendor);
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100158
159/* Return description of a device */
160char *ambapp_device_id2desc(int vendor, int id);
161
Daniel Hellstrom2a2fa792008-03-26 23:00:38 +0100162#endif
163
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100164#endif /* defined(__ASSEMBLER__) */
165
166#define AMBA_DEFAULT_IOAREA 0xfff00000
167#define AMBA_CONF_AREA 0xff000
168#define AMBA_AHB_SLAVE_CONF_AREA 0x800
169
170#define DEV_NONE 0
171#define DEV_AHB_MST 1
172#define DEV_AHB_SLV 2
173#define DEV_APB_SLV 3
174
175#define AMBA_TYPE_APBIO 0x1
176#define AMBA_TYPE_MEM 0x2
177#define AMBA_TYPE_AHBIO 0x3
178
179/* ID layout for APB and AHB devices */
180#define AMBA_PNP_ID(vendor, device) (((vendor)<<24) | ((device)<<12))
181
182/* APB Slave PnP layout definitions */
183#define AMBA_APB_ID_OFS (0*4)
184#define AMBA_APB_IOBAR_OFS (1*4)
185#define AMBA_APB_CONF_LENGH (2*4)
186
187/* AHB Master/Slave layout PnP definitions */
188#define AMBA_AHB_ID_OFS (0*4)
189#define AMBA_AHB_CUSTOM0_OFS (1*4)
190#define AMBA_AHB_CUSTOM1_OFS (2*4)
191#define AMBA_AHB_CUSTOM2_OFS (3*4)
192#define AMBA_AHB_MBAR0_OFS (4*4)
193#define AMBA_AHB_MBAR1_OFS (5*4)
194#define AMBA_AHB_MBAR2_OFS (6*4)
195#define AMBA_AHB_MBAR3_OFS (7*4)
196#define AMBA_AHB_CONF_LENGH (8*4)
197
198/* Macros for extracting information from AMBA PnP information
199 * registers.
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100200 */
201
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100202#define amba_vendor(x) (((x) >> 24) & 0xff)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100203
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100204#define amba_device(x) (((x) >> 12) & 0xfff)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100205
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100206#define amba_irq(conf) ((conf) & 0x1f)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100207
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100208#define amba_ver(conf) (((conf)>>5) & 0x1f)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100209
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100210#define amba_iobar_start(base, iobar) \
211 ((base) | ((((iobar) & 0xfff00000)>>12) & (((iobar) & 0xfff0)<<4)))
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100212
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100213#define amba_membar_start(mbar) \
214 (((mbar) & 0xfff00000) & (((mbar) & 0xfff0) << 16))
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100215
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100216#define amba_membar_type(mbar) ((mbar) & 0xf)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100217
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100218#define amba_membar_mask(mbar) (((mbar) >> 4) & 0xfff)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100219
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100220#define amba_ahbio_adr(addr, base_ioarea) \
221 ((unsigned int)(base_ioarea) | ((addr) >> 12))
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100222
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100223#define amba_apb_mask(iobar) ((~(amba_membar_mask(iobar)<<8) & 0x000fffff) + 1)
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100224
225/*************************** AMBA Plug&Play device register MAPS *****************/
226
227/*
228 * The following defines the bits in the LEON UART Status Registers.
229 */
230
231#define LEON_REG_UART_STATUS_DR 0x00000001 /* Data Ready */
232#define LEON_REG_UART_STATUS_TSE 0x00000002 /* TX Send Register Empty */
233#define LEON_REG_UART_STATUS_THE 0x00000004 /* TX Hold Register Empty */
234#define LEON_REG_UART_STATUS_BR 0x00000008 /* Break Error */
235#define LEON_REG_UART_STATUS_OE 0x00000010 /* RX Overrun Error */
236#define LEON_REG_UART_STATUS_PE 0x00000020 /* RX Parity Error */
237#define LEON_REG_UART_STATUS_FE 0x00000040 /* RX Framing Error */
238#define LEON_REG_UART_STATUS_ERR 0x00000078 /* Error Mask */
239
240/*
241 * The following defines the bits in the LEON UART Ctrl Registers.
242 */
243
244#define LEON_REG_UART_CTRL_RE 0x00000001 /* Receiver enable */
245#define LEON_REG_UART_CTRL_TE 0x00000002 /* Transmitter enable */
246#define LEON_REG_UART_CTRL_RI 0x00000004 /* Receiver interrupt enable */
247#define LEON_REG_UART_CTRL_TI 0x00000008 /* Transmitter interrupt enable */
248#define LEON_REG_UART_CTRL_PS 0x00000010 /* Parity select */
249#define LEON_REG_UART_CTRL_PE 0x00000020 /* Parity enable */
250#define LEON_REG_UART_CTRL_FL 0x00000040 /* Flow control enable */
251#define LEON_REG_UART_CTRL_LB 0x00000080 /* Loop Back enable */
252#define LEON_REG_UART_CTRL_DBG (1<<11) /* Debug Bit used by GRMON */
253
254#define LEON3_GPTIMER_EN 1
255#define LEON3_GPTIMER_RL 2
256#define LEON3_GPTIMER_LD 4
257#define LEON3_GPTIMER_IRQEN 8
258
259/*
260 * The following defines the bits in the LEON PS/2 Status Registers.
261 */
262
263#define LEON_REG_PS2_STATUS_DR 0x00000001 /* Data Ready */
264#define LEON_REG_PS2_STATUS_PE 0x00000002 /* Parity error */
265#define LEON_REG_PS2_STATUS_FE 0x00000004 /* Framing error */
266#define LEON_REG_PS2_STATUS_KI 0x00000008 /* Keyboard inhibit */
267
268/*
269 * The following defines the bits in the LEON PS/2 Ctrl Registers.
270 */
271
272#define LEON_REG_PS2_CTRL_RE 0x00000001 /* Receiver enable */
273#define LEON_REG_PS2_CTRL_TE 0x00000002 /* Transmitter enable */
274#define LEON_REG_PS2_CTRL_RI 0x00000004 /* Keyboard receive interrupt */
275#define LEON_REG_PS2_CTRL_TI 0x00000008 /* Keyboard transmit interrupt */
276
Daniel Hellstrom898cc812010-01-25 09:54:51 +0100277#ifndef __ASSEMBLER__
278
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +0100279typedef struct {
280 volatile unsigned int ilevel;
281 volatile unsigned int ipend;
282 volatile unsigned int iforce;
283 volatile unsigned int iclear;
284 volatile unsigned int mstatus;
285 volatile unsigned int notused[11];
286 volatile unsigned int cpu_mask[16];
287 volatile unsigned int cpu_force[16];
288} ambapp_dev_irqmp;
289
290typedef struct {
291 volatile unsigned int data;
292 volatile unsigned int status;
293 volatile unsigned int ctrl;
294 volatile unsigned int scaler;
295} ambapp_dev_apbuart;
296
297typedef struct {
298 volatile unsigned int val;
299 volatile unsigned int rld;
300 volatile unsigned int ctrl;
301 volatile unsigned int unused;
302} ambapp_dev_gptimer_element;
303
304#define LEON3_GPTIMER_CTRL_EN 0x1 /* Timer enable */
305#define LEON3_GPTIMER_CTRL_RS 0x2 /* Timer reStart */
306#define LEON3_GPTIMER_CTRL_LD 0x4 /* Timer reLoad */
307#define LEON3_GPTIMER_CTRL_IE 0x8 /* interrupt enable */
308#define LEON3_GPTIMER_CTRL_IP 0x10 /* interrupt flag/pending */
309#define LEON3_GPTIMER_CTRL_CH 0x20 /* Chain with previous timer */
310
311typedef struct {
312 volatile unsigned int scalar;
313 volatile unsigned int scalar_reload;
314 volatile unsigned int config;
315 volatile unsigned int unused;
316 volatile ambapp_dev_gptimer_element e[8];
317} ambapp_dev_gptimer;
318
319typedef struct {
320 volatile unsigned int iodata;
321 volatile unsigned int ioout;
322 volatile unsigned int iodir;
323 volatile unsigned int irqmask;
324 volatile unsigned int irqpol;
325 volatile unsigned int irqedge;
326} ambapp_dev_ioport;
327
328typedef struct {
329 volatile unsigned int write;
330 volatile unsigned int dummy;
331 volatile unsigned int txcolor;
332 volatile unsigned int bgcolor;
333} ambapp_dev_textvga;
334
335typedef struct {
336 volatile unsigned int data;
337 volatile unsigned int status;
338 volatile unsigned int ctrl;
339} ambapp_dev_apbps2;
340
341typedef struct {
342 unsigned int mcfg1, mcfg2, mcfg3;
343} ambapp_dev_mctrl;
344
345typedef struct {
346 unsigned int sdcfg;
347} ambapp_dev_sdctrl;
348
349typedef struct {
350 unsigned int cfg1;
351 unsigned int cfg2;
352 unsigned int cfg3;
353} ambapp_dev_ddr2spa;
354
355typedef struct {
356 unsigned int ctrl;
357 unsigned int cfg;
358} ambapp_dev_ddrspa;
359
360#endif
361
362#endif