blob: 9a0f90aa8aac8e4eaedea124ab964c0029f36b6e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/ppc/syslib/mpc52xx_sys.c
3 *
4 * Freescale MPC52xx system descriptions
5 *
6 *
7 * Maintainer : Sylvain Munaut <tnt@246tNt.com>
8 *
9 * Copyright (C) 2005 Sylvain Munaut <tnt@246tNt.com>
10 *
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
14 */
15
16#include <asm/ppc_sys.h>
17
18struct ppc_sys_spec *cur_ppc_sys_spec;
19struct ppc_sys_spec ppc_sys_specs[] = {
20 {
21 .ppc_sys_name = "5200",
22 .mask = 0xffff0000,
23 .value = 0x80110000,
24 .num_devices = 15,
25 .device_list = (enum ppc_sys_devices[])
26 {
27 MPC52xx_MSCAN1, MPC52xx_MSCAN2, MPC52xx_SPI,
28 MPC52xx_USB, MPC52xx_BDLC, MPC52xx_PSC1, MPC52xx_PSC2,
29 MPC52xx_PSC3, MPC52xx_PSC4, MPC52xx_PSC5, MPC52xx_PSC6,
30 MPC52xx_FEC, MPC52xx_ATA, MPC52xx_I2C1, MPC52xx_I2C2,
31 },
32 },
33 { /* default match */
34 .ppc_sys_name = "",
35 .mask = 0x00000000,
36 .value = 0x00000000,
37 },
38};