ppc_sys.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * include/asm-ppc/ppc_sys.h
  3. *
  4. * PPC system definitions and library functions
  5. *
  6. * Maintainer: Kumar Gala <galak@kernel.crashing.org>
  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/platform_device.h>
  20. #include <linux/types.h>
  21. #if defined(CONFIG_8260)
  22. #include <asm/mpc8260.h>
  23. #elif defined(CONFIG_83xx)
  24. #include <asm/mpc83xx.h>
  25. #elif defined(CONFIG_85xx)
  26. #include <asm/mpc85xx.h>
  27. #elif defined(CONFIG_8xx)
  28. #include <asm/mpc8xx.h>
  29. #elif defined(CONFIG_PPC_MPC52xx)
  30. #include <asm/mpc52xx.h>
  31. #elif defined(CONFIG_MPC10X_BRIDGE)
  32. #include <asm/mpc10x.h>
  33. #else
  34. #error "need definition of ppc_sys_devices"
  35. #endif
  36. #define PPC_SYS_IORESOURCE_FIXUPPED 0x00000001
  37. struct ppc_sys_spec {
  38. /* PPC sys is matched via (ID & mask) == value, id could be
  39. * PVR, SVR, IMMR, * etc. */
  40. u32 mask;
  41. u32 value;
  42. u32 num_devices;
  43. char *ppc_sys_name;
  44. u8 config[NUM_PPC_SYS_DEVS];
  45. enum ppc_sys_devices *device_list;
  46. };
  47. struct platform_notify_dev_map {
  48. const char *bus_id;
  49. void (*rtn)(struct platform_device * pdev, int idx);
  50. };
  51. enum platform_device_func {
  52. PPC_SYS_FUNC_DUMMY = 0,
  53. PPC_SYS_FUNC_ETH = 1,
  54. PPC_SYS_FUNC_UART = 2,
  55. PPC_SYS_FUNC_HLDC = 3,
  56. PPC_SYS_FUNC_USB = 4,
  57. PPC_SYS_FUNC_IRDA = 5,
  58. };
  59. #define PPC_SYS_CONFIG_DISABLED 1
  60. /* describes all specific chips and which devices they have on them */
  61. extern struct ppc_sys_spec ppc_sys_specs[];
  62. extern struct ppc_sys_spec *cur_ppc_sys_spec;
  63. /* determine which specific SOC we are */
  64. extern void identify_ppc_sys_by_id(u32 id) __init;
  65. extern void identify_ppc_sys_by_name(char *name) __init;
  66. extern void identify_ppc_sys_by_name_and_id(char *name, u32 id) __init;
  67. /* describes all devices that may exist in a given family of processors */
  68. extern struct platform_device ppc_sys_platform_devices[];
  69. /* allow any platform_device fixup to occur before device is registered */
  70. extern int (*ppc_sys_device_fixup) (struct platform_device * pdev);
  71. /* Update all memory resources by paddr, call before platform_device_register */
  72. extern void ppc_sys_fixup_mem_resource(struct platform_device *pdev,
  73. phys_addr_t paddr) __init;
  74. /* Get platform_data pointer out of platform device, call before platform_device_register */
  75. extern void *ppc_sys_get_pdata(enum ppc_sys_devices dev) __init;
  76. /* remove a device from the system */
  77. extern void ppc_sys_device_remove(enum ppc_sys_devices dev);
  78. /* Function assignment stuff */
  79. void ppc_sys_device_initfunc(void);
  80. void ppc_sys_device_setfunc(enum ppc_sys_devices dev,
  81. enum platform_device_func func);
  82. void ppc_sys_device_set_func_all(enum platform_device_func func);
  83. void platform_notify_map(const struct platform_notify_dev_map *map,
  84. struct device *dev);
  85. /* Enable / disable stuff */
  86. void ppc_sys_device_disable(enum ppc_sys_devices dev);
  87. void ppc_sys_device_enable(enum ppc_sys_devices dev);
  88. void ppc_sys_device_enable_all(void);
  89. void ppc_sys_device_disable_all(void);
  90. #endif /* __ASM_PPC_SYS_H */
  91. #endif /* __KERNEL__ */