blob: 3a6c514138c60444955348d92696beba9131984e [file] [log] [blame]
Stefan Roese34447422010-05-19 11:11:15 +02001/*
2 * (C) Copyright 2010
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese34447422010-05-19 11:11:15 +02006 */
7
8#include <common.h>
9#include <asm/ppc4xx_config.h>
10
11struct ppc4xx_config ppc4xx_config_val[] = {
12 {
Stefan Roese45f78092010-07-19 14:24:22 +020013 "600-67", "CPU: 600 PLB: 200 OPB: 67 EBC: 67",
14 {
15 0x86, 0x80, 0xce, 0x1f, 0x7d, 0x80, 0x00, 0xe0,
16 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
17 }
18 },
19 {
20 "600-100", "CPU: 600 PLB: 200 OPB: 100 EBC: 100",
Stefan Roese34447422010-05-19 11:11:15 +020021 {
22 0x86, 0x80, 0xce, 0x1f, 0x79, 0x80, 0x00, 0xa0,
23 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
24 }
25 },
26 {
Stefan Roese45f78092010-07-19 14:24:22 +020027 "667", "CPU: 667 PLB: 166 OPB: 83 EBC: 83",
28 {
29 0x06, 0x80, 0xbb, 0x14, 0x99, 0x82, 0x00, 0xa0,
30 0x40, 0x88, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
31 }
32 },
33 {
Stefan Roese34447422010-05-19 11:11:15 +020034 "800", "CPU: 800 PLB: 200 OPB: 100 EBC: 100",
35 {
36 0x86, 0x80, 0xba, 0x14, 0x99, 0x80, 0x00, 0xa0,
37 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
38 }
39 },
40 {
41 "1000", "CPU:1000 PLB: 200 OPB: 100 EBC: 100",
42 {
43 0x86, 0x82, 0x96, 0x19, 0xb9, 0x80, 0x00, 0xa0,
44 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
45 }
46 },
47 {
48 "1066", "CPU:1066 PLB: 266 OPB: 88 EBC: 88",
49 {
50 0x86, 0x80, 0xb3, 0x01, 0x9d, 0x80, 0x00, 0xa0,
51 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
52 }
53 },
54};
55
56int ppc4xx_config_count = ARRAY_SIZE(ppc4xx_config_val);