pmac_feature.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Definition of platform feature hooks for PowerMacs
  3.  * 
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1998 Paul Mackerras &
  9.  *                    Ben. Herrenschmidt.
  10.  *                    
  11.  *                    
  12.  * Note: I removed media-bay details from the feature stuff, I beleive it's
  13.  *       not worth it, the media-bay driver can directly use the mac-io
  14.  *       ASIC registers.
  15.  *       
  16.  * Implementation note: Currently, none of these functions will block.
  17.  * However, they may internally protect themselves with a spinlock
  18.  * for way too long. Be prepared for at least some of these to block
  19.  * in the future.
  20.  * 
  21.  * Unless specifically defined, the result code is assumed to be an
  22.  * error when negative, 0 is the default success result. Some functions
  23.  * may return additional positive result values.
  24.  * 
  25.  * To keep implementation simple, all feature calls are assumed to have
  26.  * the prototype parameters (struct device_node* node, int value).
  27.  * When either is not used, pass 0.
  28.  */
  29. #ifdef __KERNEL__
  30. #ifndef __PPC_ASM_PMAC_FEATURE_H
  31. #define __PPC_ASM_PMAC_FEATURE_H
  32. /*
  33.  * Known Mac motherboard models
  34.  * 
  35.  * Please, report any error here to benh@kernel.crashing.org, thanks !
  36.  */
  37. /* PowerSurge are the first generation of PCI Pmacs. This include
  38.  * all of the Grand-Central based machines
  39.  */
  40. #define PMAC_TYPE_PSURGE 0x10 /* PowerSurge */
  41. /* Here is the infamous serie of OHare based machines
  42.  */
  43. #define PMAC_TYPE_COMET 0x20 /* Beleived to be PowerBook 2400 */
  44. #define PMAC_TYPE_HOOPER 0x21 /* Beleived to be PowerBook 3400 */
  45. #define PMAC_TYPE_KANGA 0x22 /* PowerBook 3500 (first G3) */
  46. #define PMAC_TYPE_ALCHEMY 0x23 /* Alchemy motherboard base */
  47. #define PMAC_TYPE_GAZELLE 0x24 /* Spartacus, some 5xxx/6xxx */
  48. #define PMAC_TYPE_UNKNOWN_OHARE 0x2f /* Unknown, but OHare based */
  49. /* Here are the Heathrow based machines
  50.  * FIXME: Differenciate wallstreet,mainstreet,wallstreetII
  51.  */
  52. #define PMAC_TYPE_GOSSAMER 0x30 /* Gossamer motherboard */
  53. #define PMAC_TYPE_SILK 0x31 /* Desktop PowerMac G3 */
  54. #define PMAC_TYPE_WALLSTREET 0x32 /* Wallstreet/Mainstreet PowerBook*/
  55. #define PMAC_TYPE_UNKNOWN_HEATHROW 0x3f /* Unknown but heathrow based */
  56. /* Here are newworld machines based on Paddington (heathrow derivative)
  57.  */
  58. #define PMAC_TYPE_101_PBOOK 0x40 /* 101 PowerBook (aka Lombard) */
  59. #define PMAC_TYPE_ORIG_IMAC 0x41 /* First generation iMac */
  60. #define PMAC_TYPE_YOSEMITE 0x42 /* B&W G3 */
  61. #define PMAC_TYPE_YIKES 0x43 /* Yikes G4 (PCI graphics) */
  62. #define PMAC_TYPE_UNKNOWN_PADDINGTON 0x4f /* Unknown but paddington based */
  63. /* Core99 machines based on UniNorth 1.0 and 1.5
  64.  * 
  65.  * Note: A single entry here may cover several actual models according
  66.  * to the device-tree. (Sawtooth is most tower G4s, FW_IMAC is most
  67.  * FireWire based iMacs, etc...). Those machines are too similar to be
  68.  * distinguished here, when they need to be differencied, use the
  69.  * device-tree "model" or "compatible" property.
  70.  */
  71. #define PMAC_TYPE_ORIG_IBOOK 0x40 /* First iBook model (no firewire) */
  72. #define PMAC_TYPE_SAWTOOTH 0x41 /* Desktop G4s */
  73. #define PMAC_TYPE_FW_IMAC 0x42 /* FireWire iMacs (except Pangea based) */
  74. #define PMAC_TYPE_FW_IBOOK 0x43 /* FireWire iBooks (except iBook2) */
  75. #define PMAC_TYPE_CUBE 0x44 /* Cube PowerMac */
  76. #define PMAC_TYPE_QUICKSILVER 0x45 /* QuickSilver G4s */
  77. #define PMAC_TYPE_PISMO 0x46 /* Pismo PowerBook */
  78. #define PMAC_TYPE_TITANIUM 0x47 /* Titanium PowerBook */
  79. #define PMAC_TYPE_TITANIUM2 0x48 /* Titanium II PowerBook */
  80. #define PMAC_TYPE_UNKNOWN_CORE99 0x5f
  81. /* MacRISC2 machines based on the Pangea chipset
  82.  */
  83. #define PMAC_TYPE_PANGEA_IMAC 0x100 /* Flower Power iMac */
  84. #define PMAC_TYPE_IBOOK2 0x101 /* iBook2 (polycarbonate) */
  85. #define PMAC_TYPE_UNKNOWN_PANGEA 0x10f
  86. /*
  87.  * Motherboard flags
  88.  */
  89. #define PMAC_MB_CAN_SLEEP 0x00000001
  90. #define PMAC_MB_HAS_FW_POWER 0x00000002
  91. /*
  92.  * Feature calls supported on pmac
  93.  * 
  94.  */
  95. /*
  96.  * Use this inline wrapper
  97.  */
  98. struct device_node;
  99. static inline int pmac_call_feature(int selector, struct device_node* node,
  100. int param, int value)
  101. {
  102. if (!ppc_md.feature_call)
  103. return -ENODEV;
  104. return ppc_md.feature_call(selector, node, param, value);
  105. }
  106. /* PMAC_FTR_SERIAL_ENABLE (struct device_node* node, int param, int value)
  107.  * enable/disable an SCC side. Pass the node corresponding to the
  108.  * channel side as a parameter.
  109.  * param is the type of port
  110.  * if param is ored with PMAC_SCC_FLAG_XMON, then the SCC is locked enabled
  111.  * for use by xmon.
  112.  */
  113. #define PMAC_FTR_SCC_ENABLE PMAC_FTR_DEF(0)
  114. #define PMAC_SCC_ASYNC 0
  115. #define PMAC_SCC_IRDA 1
  116. #define PMAC_SCC_I2S1 2
  117. #define PMAC_SCC_FLAG_XMON 0x00001000
  118. /* PMAC_FTR_MODEM_ENABLE (struct device_node* node, 0, int value)
  119.  * enable/disable the internal modem.
  120.  */
  121. #define PMAC_FTR_MODEM_ENABLE PMAC_FTR_DEF(1)
  122. /* PMAC_FTR_SWIM3_ENABLE (struct device_node* node, 0,int value)
  123.  * enable/disable the swim3 (floppy) cell of a mac-io ASIC
  124.  */
  125. #define PMAC_FTR_SWIM3_ENABLE PMAC_FTR_DEF(2)
  126. /* PMAC_FTR_MESH_ENABLE (struct device_node* node, 0, int value)
  127.  * enable/disable the mesh (scsi) cell of a mac-io ASIC
  128.  */
  129. #define PMAC_FTR_MESH_ENABLE PMAC_FTR_DEF(3)
  130. /* PMAC_FTR_IDE_ENABLE (struct device_node* node, int busID, int value)
  131.  * enable/disable an IDE port of a mac-io ASIC
  132.  * pass the busID parameter
  133.  */
  134. #define PMAC_FTR_IDE_ENABLE PMAC_FTR_DEF(4)
  135. /* PMAC_FTR_IDE_RESET (struct device_node* node, int busID, int value)
  136.  * assert(1)/release(0) an IDE reset line (mac-io IDE only)
  137.  */
  138. #define PMAC_FTR_IDE_RESET PMAC_FTR_DEF(5)
  139. /* PMAC_FTR_BMAC_ENABLE (struct device_node* node, 0, int value)
  140.  * enable/disable the bmac (ethernet) cell of a mac-io ASIC, also drive
  141.  * it's reset line
  142.  */
  143. #define PMAC_FTR_BMAC_ENABLE PMAC_FTR_DEF(6)
  144. /* PMAC_FTR_GMAC_ENABLE (struct device_node* node, 0, int value)
  145.  * enable/disable the gmac (ethernet) cell of an uninorth ASIC. This
  146.  * control the cell's clock.
  147.  */
  148. #define PMAC_FTR_GMAC_ENABLE PMAC_FTR_DEF(7)
  149. /* PMAC_FTR_GMAC_PHY_RESET (struct device_node* node, 0, 0)
  150.  * Perform a HW reset of the PHY connected to a gmac controller.
  151.  * Pass the gmac device node, not the PHY node.
  152.  */
  153. #define PMAC_FTR_GMAC_PHY_RESET PMAC_FTR_DEF(8)
  154. /* PMAC_FTR_SOUND_CHIP_ENABLE (struct device_node* node, 0, int value)
  155.  * enable/disable the sound chip, whatever it is and provided it can
  156.  * acually be controlled
  157.  */
  158. #define PMAC_FTR_SOUND_CHIP_ENABLE PMAC_FTR_DEF(9)
  159. /* -- add various tweaks related to sound routing -- */
  160.  
  161. /* PMAC_FTR_AIRPORT_ENABLE (struct device_node* node, 0, int value)
  162.  * enable/disable the airport card
  163.  */
  164. #define PMAC_FTR_AIRPORT_ENABLE PMAC_FTR_DEF(10)
  165. /* PMAC_FTR_RESET_CPU (NULL, int cpu_nr, 0)
  166.  * toggle the reset line of a CPU on an uninorth-based SMP machine
  167.  */
  168. #define PMAC_FTR_RESET_CPU PMAC_FTR_DEF(11)
  169. /* PMAC_FTR_USB_ENABLE (struct device_node* node, 0, int value)
  170.  * enable/disable an USB cell, along with the power of the USB "pad"
  171.  * on keylargo based machines
  172.  */
  173. #define PMAC_FTR_USB_ENABLE PMAC_FTR_DEF(12)
  174. /* PMAC_FTR_1394_ENABLE (struct device_node* node, 0, int value)
  175.  * enable/disable the firewire cell of an uninorth ASIC.
  176.  */
  177. #define PMAC_FTR_1394_ENABLE PMAC_FTR_DEF(13)
  178. /* PMAC_FTR_1394_CABLE_POWER (struct device_node* node, 0, int value)
  179.  * enable/disable the firewire cable power supply of the uninorth
  180.  * firewire cell
  181.  */
  182. #define PMAC_FTR_1394_CABLE_POWER PMAC_FTR_DEF(14)
  183. /* PMAC_FTR_SLEEP_STATE (struct device_node* node, 0, int value)
  184.  * set the sleep state of the motherboard.
  185.  * Pass -1 as value to query for sleep capability
  186.  */
  187. #define PMAC_FTR_SLEEP_STATE PMAC_FTR_DEF(15)
  188. /* PMAC_FTR_GET_MB_INFO (NULL, selector, 0)
  189.  * 
  190.  * returns some motherboard infos.
  191.  * selector: 0  - model id
  192.  *           1  - model flags (capabilities)
  193.  *           2  - model name (cast to const char *)
  194.  */
  195. #define PMAC_FTR_GET_MB_INFO PMAC_FTR_DEF(16)
  196. #define   PMAC_MB_INFO_MODEL 0
  197. #define   PMAC_MB_INFO_FLAGS 1
  198. #define   PMAC_MB_INFO_NAME 2
  199. /* PMAC_FTR_READ_GPIO (NULL, int index, 0)
  200.  *
  201.  * read a GPIO from a mac-io controller of type KeyLargo or Pangea.
  202.  * the value returned is a byte (positive), or a negative error code
  203.  */
  204. #define PMAC_FTR_READ_GPIO PMAC_FTR_DEF(17)
  205. /* PMAC_FTR_WRITE_GPIO (NULL, int index, int value)
  206.  *
  207.  * write a GPIO of a mac-io controller of type KeyLargo or Pangea.
  208.  */
  209. #define PMAC_FTR_WRITE_GPIO PMAC_FTR_DEF(18)
  210. /* Don't use those directly, they are for the sake of pmac_setup.c */
  211. extern int pmac_do_feature_call(unsigned int selector, ...);
  212. extern void pmac_feature_init(void);
  213. extern void pmac_feature_late_init(void);
  214. #define PMAC_FTR_DEF(x) ((_MACH_Pmac << 16) | (x))
  215. #endif /* __PPC_ASM_PMAC_FEATURE_H */
  216. #endif /* __KERNEL__ */