~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/esd/pmc405de/chip_config.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) Copyright 2008-2009
 
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
                "133",
 
14
                "CPU: 133 PLB: 133 OPB: 66 EBC: 44 PCI: 44/66",
 
15
                {
 
16
                        0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
17
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
18
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
19
                        0x00, 0x40, 0x12, 0x12, 0x42, 0x3e, 0x00, 0x00
 
20
                }
 
21
        },
 
22
        {
 
23
                "266",
 
24
                "CPU: 266 PLB: 133 OPB: 66 EBC: 44 PCI: 44/66",
 
25
                {
 
26
                        0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
27
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
28
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
29
                        0x00, 0x50, 0x22, 0x2d, 0x42, 0x3e, 0x00, 0x00
 
30
                }
 
31
        },
 
32
        {
 
33
                "333",
 
34
                "CPU: 333 PLB: 111 OPB: 55 EBC: 55 PCI: 55/111",
 
35
                {
 
36
                        0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
37
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
38
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
39
                        0x00, 0x60, 0x29, 0x2d, 0x42, 0xbe, 0x00, 0x00
 
40
                }
 
41
        },
 
42
};
 
43
 
 
44
int ppc4xx_config_count = ARRAY_SIZE(ppc4xx_config_val);