[PATCH] powerpc: Move pSeries firmware feature setup into platforms/pseries
[deliverable/linux.git] / include / asm-ppc / ppc_sys.h
CommitLineData
1da177e4
LT
1/*
2 * include/asm-ppc/ppc_sys.h
3 *
4 * PPC system definitions and library functions
5 *
4c8d3d99 6 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
1da177e4
LT
7 *
8 * Copyright 2005 Freescale Semiconductor, Inc
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
16#ifdef __KERNEL__
17#ifndef __ASM_PPC_SYS_H
18#define __ASM_PPC_SYS_H
19
20#include <linux/init.h>
d052d1be 21#include <linux/platform_device.h>
1da177e4
LT
22#include <linux/types.h>
23
8e8fff09
KG
24#if defined(CONFIG_8260)
25#include <asm/mpc8260.h>
26#elif defined(CONFIG_83xx)
1da177e4
LT
27#include <asm/mpc83xx.h>
28#elif defined(CONFIG_85xx)
29#include <asm/mpc85xx.h>
514ccd4e
VB
30#elif defined(CONFIG_8xx)
31#include <asm/mpc8xx.h>
1da177e4
LT
32#elif defined(CONFIG_PPC_MPC52xx)
33#include <asm/mpc52xx.h>
b264c352
KG
34#elif defined(CONFIG_MPC10X_BRIDGE)
35#include <asm/mpc10x.h>
1a42e53d
GL
36#elif defined(CONFIG_XILINX_VIRTEX)
37#include <platforms/4xx/virtex.h>
1da177e4
LT
38#else
39#error "need definition of ppc_sys_devices"
40#endif
41
42struct ppc_sys_spec {
43 /* PPC sys is matched via (ID & mask) == value, id could be
44 * PVR, SVR, IMMR, * etc. */
45 u32 mask;
46 u32 value;
47 u32 num_devices;
48 char *ppc_sys_name;
49 enum ppc_sys_devices *device_list;
50};
51
52/* describes all specific chips and which devices they have on them */
53extern struct ppc_sys_spec ppc_sys_specs[];
54extern struct ppc_sys_spec *cur_ppc_sys_spec;
55
56/* determine which specific SOC we are */
57extern void identify_ppc_sys_by_id(u32 id) __init;
58extern void identify_ppc_sys_by_name(char *name) __init;
88adfe70 59extern void identify_ppc_sys_by_name_and_id(char *name, u32 id) __init;
1da177e4
LT
60
61/* describes all devices that may exist in a given family of processors */
62extern struct platform_device ppc_sys_platform_devices[];
63
64/* allow any platform_device fixup to occur before device is registered */
65extern int (*ppc_sys_device_fixup) (struct platform_device * pdev);
66
67/* Update all memory resources by paddr, call before platform_device_register */
68extern void ppc_sys_fixup_mem_resource(struct platform_device *pdev,
69 phys_addr_t paddr) __init;
70
71/* Get platform_data pointer out of platform device, call before platform_device_register */
72extern void *ppc_sys_get_pdata(enum ppc_sys_devices dev) __init;
73
74/* remove a device from the system */
75extern void ppc_sys_device_remove(enum ppc_sys_devices dev);
76
77#endif /* __ASM_PPC_SYS_H */
78#endif /* __KERNEL__ */
This page took 0.101206 seconds and 5 git commands to generate.