ppc_sys.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * include/asm-ppc/ppc_sys.h
  3. *
  4. * PPC system definitions and library functions
  5. *
  6. * Maintainer: Kumar Gala <kumar.gala@freescale.com>
  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. #ifdef __KERNEL__
  16. #ifndef __ASM_PPC_SYS_H
  17. #define __ASM_PPC_SYS_H
  18. #include <linux/init.h>
  19. #include <linux/device.h>
  20. #include <linux/types.h>
  21. #if defined(CONFIG_83xx)
  22. #include <asm/mpc83xx.h>
  23. #elif defined(CONFIG_85xx)
  24. #include <asm/mpc85xx.h>
  25. #elif defined(CONFIG_PPC_MPC52xx)
  26. #include <asm/mpc52xx.h>
  27. #elif defined(CONFIG_MPC10X_BRIDGE)
  28. #include <asm/mpc10x.h>
  29. #else
  30. #error "need definition of ppc_sys_devices"
  31. #endif
  32. struct ppc_sys_spec {
  33. /* PPC sys is matched via (ID & mask) == value, id could be
  34. * PVR, SVR, IMMR, * etc. */
  35. u32 mask;
  36. u32 value;
  37. u32 num_devices;
  38. char *ppc_sys_name;
  39. enum ppc_sys_devices *device_list;
  40. };
  41. /* describes all specific chips and which devices they have on them */
  42. extern struct ppc_sys_spec ppc_sys_specs[];
  43. extern struct ppc_sys_spec *cur_ppc_sys_spec;
  44. /* determine which specific SOC we are */
  45. extern void identify_ppc_sys_by_id(u32 id) __init;
  46. extern void identify_ppc_sys_by_name(char *name) __init;
  47. /* describes all devices that may exist in a given family of processors */
  48. extern struct platform_device ppc_sys_platform_devices[];
  49. /* allow any platform_device fixup to occur before device is registered */
  50. extern int (*ppc_sys_device_fixup) (struct platform_device * pdev);
  51. /* Update all memory resources by paddr, call before platform_device_register */
  52. extern void ppc_sys_fixup_mem_resource(struct platform_device *pdev,
  53. phys_addr_t paddr) __init;
  54. /* Get platform_data pointer out of platform device, call before platform_device_register */
  55. extern void *ppc_sys_get_pdata(enum ppc_sys_devices dev) __init;
  56. /* remove a device from the system */
  57. extern void ppc_sys_device_remove(enum ppc_sys_devices dev);
  58. #endif /* __ASM_PPC_SYS_H */
  59. #endif /* __KERNEL__ */