blob: e48557098f81a1ee20e7cd8d2ebe076600dc50b5 [file] [log] [blame]
Stefan Roese87c0b722009-07-20 06:57:27 +02001/*
2 * (C) Copyright 2008-2009
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese87c0b722009-07-20 06:57:27 +02006 */
7
8#include <common.h>
9#include <asm/ppc4xx_config.h>
10
11struct ppc4xx_config ppc4xx_config_val[] = {
12 {
13 "600-nor", "NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100",
14 {
15 0x86, 0x80, 0xce, 0x1f, 0x79, 0x80, 0x00, 0xa0,
16 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
17 }
18 },
19 {
Stefan Roese87c0b722009-07-20 06:57:27 +020020 "800-nor", "NOR CPU: 800 PLB: 200 OPB: 100 EBC: 100",
21 {
22 0x86, 0x80, 0xba, 0x14, 0x99, 0x80, 0x00, 0xa0,
23 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
24 }
25 },
26 {
Stefan Roese87c0b722009-07-20 06:57:27 +020027 "1000-nor", "NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100",
28 {
29 0x86, 0x82, 0x96, 0x19, 0xb9, 0x80, 0x00, 0xa0,
30 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
31 }
32 },
33 {
Stefan Roese87c0b722009-07-20 06:57:27 +020034 "1066-nor", "NOR CPU:1066 PLB: 266 OPB: 88 EBC: 88",
35 {
36 0x86, 0x80, 0xb3, 0x01, 0x9d, 0x80, 0x00, 0xa0,
37 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
38 }
39 },
Stefan Roese514bab62009-08-17 16:57:53 +020040#if !defined(CONFIG_ARCHES)
41 {
42 "600-nand", "NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100",
43 {
44 0x86, 0x80, 0xce, 0x1f, 0x79, 0x90, 0x01, 0xa0,
45 0xa0, 0xe8, 0x23, 0x58, 0x0d, 0x05, 0x00, 0x00
46 }
47 },
48 {
49 "800-nand", "NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100",
50 {
51 0x86, 0x80, 0xba, 0x14, 0x99, 0x90, 0x01, 0xa0,
52 0xa0, 0xe8, 0x23, 0x58, 0x0d, 0x05, 0x00, 0x00
53 }
54 },
55 {
56 "1000-nand", "NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100",
57 {
58 0x86, 0x82, 0x96, 0x19, 0xb9, 0x90, 0x01, 0xa0,
59 0xa0, 0xe8, 0x23, 0x58, 0x0d, 0x05, 0x00, 0x00
60 }
61 },
Stefan Roese87c0b722009-07-20 06:57:27 +020062 {
63 "1066-nand", "NAND CPU:1066 PLB: 266 OPB: 88 EBC: 88",
64 {
65 0x86, 0x80, 0xb3, 0x01, 0x9d, 0x90, 0x01, 0xa0,
66 0xa0, 0xe8, 0x23, 0x58, 0x0d, 0x05, 0x00, 0x00
67 }
68 },
Stefan Roese514bab62009-08-17 16:57:53 +020069#endif
Stefan Roese87c0b722009-07-20 06:57:27 +020070};
71
72int ppc4xx_config_count = ARRAY_SIZE(ppc4xx_config_val);