]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/powerpc/include/asm/ppc440.h
powerpc: mpc824x: remove MPC824X cpu support
[people/ms/u-boot.git] / arch / powerpc / include / asm / ppc440.h
CommitLineData
c46f5333
LJ
1/*
2 * (C) Copyright 2006
3 * Sylvie Gohl, AMCC/IBM, gohl.sylvie@fr.ibm.com
4 * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
5 * Thierry Roman, AMCC/IBM, thierry_roman@fr.ibm.com
6 * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
7 * Robert Snyder, AMCC/IBM, rob.snyder@fr.ibm.com
8 *
5e7abce9
SR
9 * (C) Copyright 2010
10 * Stefan Roese, DENX Software Engineering, sr@denx.de.
11 *
1b387ef5 12 * SPDX-License-Identifier: GPL-2.0 IBM-pibs
c46f5333
LJ
13 */
14
ba56f625 15#ifndef __PPC440_H__
c00b5f85
WD
16#define __PPC440_H__
17
dbcc3571 18#define CONFIG_SYS_DCACHE_SIZE (32 << 10) /* For AMCC 440 CPUs */
9b94ac61 19
5e7abce9 20/*
c00b5f85 21 * DCRs & Related
5e7abce9 22 */
c00b5f85 23
5e7abce9
SR
24/* Memory mapped registers */
25#define PCIL0_CFGADR (CONFIG_SYS_PCI_BASE + 0x0ec00000)
26#define PCIL0_CFGDATA (CONFIG_SYS_PCI_BASE + 0x0ec00004)
27#define PCIL0_CFGBASE (CONFIG_SYS_PCI_BASE + 0x0ec80000)
28#define PCIL0_IOBASE (CONFIG_SYS_PCI_BASE + 0x08000000)
29
30/* DCR registers */
31
32/* CPR register declarations */
d1c3b275
SR
33#define CPR0_PLLC 0x0040
34#define CPR0_PLLD 0x0060
f80e61dc
NG
35#define CPR0_PRIMAD0 0x0080
36#define CPR0_PRIMBD0 0x00a0
37#define CPR0_OPBD0 0x00c0
d1c3b275
SR
38#define CPR0_PERD 0x00e0
39#define CPR0_MALD 0x0100
40#define CPR0_SPCID 0x0120
41#define CPR0_ICFG 0x0140
ba56f625 42
5e7abce9
SR
43/* SDR register definations */
44#define SDR0_SDSTP0 0x0020
45#define SDR0_SDSTP1 0x0021
d1c3b275
SR
46#define SDR0_PINSTP 0x0040
47#define SDR0_SDCS0 0x0060
5e7abce9
SR
48#define SDR0_ECID0 0x0080
49#define SDR0_ECID1 0x0081
50#define SDR0_ECID2 0x0082
51#define SDR0_ECID3 0x0083
52#define SDR0_DDR0 0x00e1
d1c3b275 53#define SDR0_EBC 0x0100
5e7abce9
SR
54#define SDR0_UART0 0x0120
55#define SDR0_UART1 0x0121
56#define SDR0_UART2 0x0122
57#define SDR0_UART3 0x0123
d1c3b275
SR
58#define SDR0_CP440 0x0180
59#define SDR0_XCR 0x01c0
5e7abce9 60#define SDR0_XCR0 0x01c0
d1c3b275
SR
61#define SDR0_XPLLC 0x01c1
62#define SDR0_XPLLD 0x01c2
63#define SDR0_SRST 0x0200
5e7abce9
SR
64#define SDR0_SRST0 SDR0_SRST
65#define SDR0_SRST1 0x0201
66#define SDR0_AMP0 0x0240
67#define SDR0_AMP1 0x0241
d1c3b275
SR
68#define SDR0_USB0 0x0320
69#define SDR0_CUST0 0x4000
70#define SDR0_CUST1 0x4002
5e7abce9
SR
71#define SDR0_CUST2 0x4004
72#define SDR0_CUST3 0x4006
73#define SDR0_PFC0 0x4100
74#define SDR0_PFC1 0x4101
75#define SDR0_PFC2 0x4102
76#define SDR0_PFC4 0x4104
77#define SDR0_MFR 0x4300
ba56f625 78
5e7abce9 79#define SDR0_DDR0_DDRM_DECODE(n) ((((u32)(n)) >> 29) & 0x03)
6c5879f3 80
5e7abce9
SR
81#define SDR0_PCI0_PAE_MASK (0x80000000 >> 0)
82#define SDR0_XCR0_PAE_MASK (0x80000000 >> 0)
a11e0696 83
5e7abce9
SR
84#define SDR0_PFC0_GEIE_MASK 0x00003e00
85#define SDR0_PFC0_GEIE_TRE 0x00003e00
86#define SDR0_PFC0_GEIE_NOTRE 0x00000000
87#define SDR0_PFC0_TRE_MASK (0x80000000 >> 23)
88#define SDR0_PFC0_TRE_DISABLE 0x00000000
89#define SDR0_PFC0_TRE_ENABLE (0x80000000 >> 23)
6c5879f3 90
5e7abce9
SR
91/*
92 * Core Configuration/MMU configuration for 440
93 */
94#define CCR0_DAPUIB 0x00100000
95#define CCR0_DTB 0x00008000
6c5879f3 96
5e7abce9 97#define SDR0_SDCS_SDD (0x80000000 >> 31)
c157d8e2 98
5e7abce9 99/* todo: move this code from macro offsets to struct */
f80e61dc
NG
100#define PCIL0_VENDID (PCIL0_CFGBASE + PCI_VENDOR_ID )
101#define PCIL0_DEVID (PCIL0_CFGBASE + PCI_DEVICE_ID )
102#define PCIL0_CMD (PCIL0_CFGBASE + PCI_COMMAND )
103#define PCIL0_STATUS (PCIL0_CFGBASE + PCI_STATUS )
104#define PCIL0_REVID (PCIL0_CFGBASE + PCI_REVISION_ID )
105#define PCIL0_CLS (PCIL0_CFGBASE + PCI_CLASS_CODE)
106#define PCIL0_CACHELS (PCIL0_CFGBASE + PCI_CACHE_LINE_SIZE )
107#define PCIL0_LATTIM (PCIL0_CFGBASE + PCI_LATENCY_TIMER )
108#define PCIL0_HDTYPE (PCIL0_CFGBASE + PCI_HEADER_TYPE )
109#define PCIL0_BIST (PCIL0_CFGBASE + PCI_BIST )
110#define PCIL0_BAR0 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_0 )
111#define PCIL0_BAR1 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_1 )
112#define PCIL0_BAR2 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_2 )
113#define PCIL0_BAR3 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_3 )
114#define PCIL0_BAR4 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_4 )
115#define PCIL0_BAR5 (PCIL0_CFGBASE + PCI_BASE_ADDRESS_5 )
116#define PCIL0_CISPTR (PCIL0_CFGBASE + PCI_CARDBUS_CIS )
117#define PCIL0_SBSYSVID (PCIL0_CFGBASE + PCI_SUBSYSTEM_VENDOR_ID )
118#define PCIL0_SBSYSID (PCIL0_CFGBASE + PCI_SUBSYSTEM_ID )
119#define PCIL0_EROMBA (PCIL0_CFGBASE + PCI_ROM_ADDRESS )
120#define PCIL0_CAP (PCIL0_CFGBASE + PCI_CAPABILITY_LIST )
121#define PCIL0_RES0 (PCIL0_CFGBASE + 0x0035 )
122#define PCIL0_RES1 (PCIL0_CFGBASE + 0x0036 )
123#define PCIL0_RES2 (PCIL0_CFGBASE + 0x0038 )
124#define PCIL0_INTLN (PCIL0_CFGBASE + PCI_INTERRUPT_LINE )
125#define PCIL0_INTPN (PCIL0_CFGBASE + PCI_INTERRUPT_PIN )
dbcc3571 126
f80e61dc
NG
127#define PCIL0_MINGNT (PCIL0_CFGBASE + PCI_MIN_GNT )
128#define PCIL0_MAXLTNCY (PCIL0_CFGBASE + PCI_MAX_LAT )
129
f80e61dc
NG
130#define PCIL0_POM0LAL (PCIL0_CFGBASE + 0x0068)
131#define PCIL0_POM0LAH (PCIL0_CFGBASE + 0x006c)
132#define PCIL0_POM0SA (PCIL0_CFGBASE + 0x0070)
133#define PCIL0_POM0PCIAL (PCIL0_CFGBASE + 0x0074)
134#define PCIL0_POM0PCIAH (PCIL0_CFGBASE + 0x0078)
135#define PCIL0_POM1LAL (PCIL0_CFGBASE + 0x007c)
136#define PCIL0_POM1LAH (PCIL0_CFGBASE + 0x0080)
137#define PCIL0_POM1SA (PCIL0_CFGBASE + 0x0084)
138#define PCIL0_POM1PCIAL (PCIL0_CFGBASE + 0x0088)
139#define PCIL0_POM1PCIAH (PCIL0_CFGBASE + 0x008c)
140#define PCIL0_POM2SA (PCIL0_CFGBASE + 0x0090)
141
142#define PCIL0_PIM0SA (PCIL0_CFGBASE + 0x0098)
143#define PCIL0_PIM0LAL (PCIL0_CFGBASE + 0x009c)
144#define PCIL0_PIM0LAH (PCIL0_CFGBASE + 0x00a0)
145#define PCIL0_PIM1SA (PCIL0_CFGBASE + 0x00a4)
146#define PCIL0_PIM1LAL (PCIL0_CFGBASE + 0x00a8)
147#define PCIL0_PIM1LAH (PCIL0_CFGBASE + 0x00ac)
148#define PCIL0_PIM2SA (PCIL0_CFGBASE + 0x00b0)
149#define PCIL0_PIM2LAL (PCIL0_CFGBASE + 0x00b4)
150#define PCIL0_PIM2LAH (PCIL0_CFGBASE + 0x00b8)
151
152#define PCIL0_STS (PCIL0_CFGBASE + 0x00e0)
c00b5f85 153
c00b5f85 154#endif /* __PPC440_H__ */