summaryrefslogtreecommitdiffstats
path: root/include/lh7a404.h
blob: 4098af34a88ff0e690c9263b0ac1a9bfbd252ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

/*
 * lh7a404 SoC interface
 */

#ifndef __LH7A404_H__
#define __LH7A404_H__

#include "lh7a40x.h"

/* Interrupt Controller (userguide 8.2.1) */
typedef struct {
	volatile u32  irqstatus;
	volatile u32  fiqstatus;
	volatile u32  rawintr;
	volatile u32  intsel;
	volatile u32  inten;
	volatile u32  intenclr;
	volatile u32  softint;
	volatile u32  softintclr;
	volatile u32  protect;
	volatile u32  unused1;
	volatile u32  unused2;
	volatile u32  vectaddr;
	volatile u32  nvaddr;
	volatile u32  unused3[32];
	volatile u32  vad[16];
	volatile u32  unused4[44];
	volatile u32  vectcntl[16];
	volatile u32  unused5[44];
	volatile u32  itcr;
	volatile u32  itip1;
	volatile u32  itip2;
	volatile u32  itop1;
	volatile u32  itop2;
	volatile u32  unused6[333];
	volatile u32  periphid[4];
	volatile u32  pcellid[4];
} /*__attribute__((__packed__))*/ lh7a404_vic_t;
#define LH7A404_VIC_BASE	(0x80008000)
#define LH7A400_VIC_PTR(x)  ((lh7a404_vic_t*)(LH7A400_VIC_BASE + (x*0x2000)))


typedef struct {
	lh7a40x_dmachan_t  m2p0_tx;
	lh7a40x_dmachan_t  m2p1_rx;
	lh7a40x_dmachan_t  m2p2_tx;
	lh7a40x_dmachan_t  m2p3_rx;
	lh7a40x_dmachan_t  m2m0;
	lh7a40x_dmachan_t  m2m1;
	lh7a40x_dmachan_t  unused1;
	lh7a40x_dmachan_t  unused2;
	lh7a40x_dmachan_t  m2p5_rx;
	lh7a40x_dmachan_t  m2p4_tx;
	lh7a40x_dmachan_t  m2p7_rx;
	lh7a40x_dmachan_t  m2p6_tx;
	lh7a40x_dmachan_t  m2p9_rx;
	lh7a40x_dmachan_t  m2p8_tx;
	volatile u32       chanarb;
	volatile u32       glblint;
} /*__attribute__((__packed__))*/ lh7a400_dma_t;


#endif  /* __LH7A404_H__ */
OpenPOWER on IntegriCloud