]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/t3corp/chip_config.c
drivers, block: remove sil680 driver
[people/ms/u-boot.git] / board / t3corp / chip_config.c
1 /*
2 * (C) Copyright 2010
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #include <common.h>
9 #include <asm/ppc4xx_config.h>
10
11 struct ppc4xx_config ppc4xx_config_val[] = {
12 {
13 "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",
21 {
22 0x86, 0x80, 0xce, 0x1f, 0x79, 0x80, 0x00, 0xa0,
23 0x40, 0x08, 0x23, 0x50, 0x0d, 0x05, 0x00, 0x00
24 }
25 },
26 {
27 "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 {
34 "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
56 int ppc4xx_config_count = ARRAY_SIZE(ppc4xx_config_val);