nubus.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.   nubus.h: various definitions and prototypes for NuBus drivers to use.
  3.   Originally written by Alan Cox.
  4.   Hacked to death by C. Scott Ananian and David Huggins-Daines.
  5.   
  6.   Some of the constants in here are from the corresponding
  7.   NetBSD/OpenBSD header file, by Allen Briggs.  We figured out the
  8.   rest of them on our own. */
  9. #ifndef LINUX_NUBUS_H
  10. #define LINUX_NUBUS_H
  11. #ifdef __KERNEL__
  12. #include <asm/nubus.h>
  13. #endif
  14. enum nubus_category {
  15. NUBUS_CAT_BOARD          = 0x0001,
  16. NUBUS_CAT_DISPLAY        = 0x0003,
  17. NUBUS_CAT_NETWORK        = 0x0004,
  18. NUBUS_CAT_COMMUNICATIONS = 0x0006,
  19. NUBUS_CAT_FONT           = 0x0009,
  20. NUBUS_CAT_CPU            = 0x000A,
  21. /* For lack of a better name */
  22. NUBUS_CAT_DUODOCK        = 0x0020
  23. };
  24. enum nubus_type_network {
  25. NUBUS_TYPE_ETHERNET   = 0x0001,
  26. NUBUS_TYPE_RS232      = 0x0002
  27. };
  28. enum nubus_type_display {
  29. NUBUS_TYPE_VIDEO   = 0x0001
  30. };
  31. enum nubus_type_cpu {
  32. NUBUS_TYPE_68020   = 0x0003,
  33. NUBUS_TYPE_68030   = 0x0004,
  34. NUBUS_TYPE_68040   = 0x0005
  35. };
  36. /* Known <Cat,Type,SW,HW> tuples: (according to TattleTech and Slots)
  37.  *  68030 motherboards: <10,4,0,24>
  38.  *  68040 motherboards: <10,5,0,24>
  39.  *  DuoDock Plus: <32,1,1,2>
  40.  *
  41.  *  Toby Frame Buffer card: <3,1,1,1>
  42.  *  RBV built-in video (IIci): <3,1,1,24>
  43.  *  Valkyrie built-in video (Q630): <3,1,1,46>
  44.  *  Macintosh Display Card: <3,1,1,25>
  45.  *  Sonora built-in video (P460): <3,1,1,34>
  46.  *  Jet framebuffer (DuoDock Plus): <3,1,1,41>
  47.  *
  48.  *  SONIC comm-slot/on-board and DuoDock Ethernet: <4,1,1,272>
  49.  *  SONIC LC-PDS Ethernet (Dayna, but like Apple 16-bit, sort of): <4,1,1,271>
  50.  *  Sonic Systems Ethernet A-Series Card: <4,1,268,256>
  51.  *  Asante MacCon NuBus-A: <4,1,260,256> (alpha-1.0,1.1 revision)
  52.  *   ROM on the above card: <2,1,0,0>
  53.  *  Cabletron ethernet card: <4,1,1,265>
  54.  *  Farallon ethernet card: <4,1,268,256> (identical to Sonic Systems card)
  55.  *  Kinetics EtherPort IIN: <4,1,259,262>
  56.  *  API Engineering EtherRun_LCa PDS enet card: <4,1,282,256>
  57.  *
  58.  *  Add your devices to the list!  You can obtain the "Slots" utility
  59.  *  from Apple's FTP site at:
  60.  *  ftp://dev.apple.com/devworld/Tool_Chest/Devices_-_Hardware/NuBus_Slot_Manager/
  61.  *
  62.  *  Alternately, TattleTech can be found at any Info-Mac mirror site.  
  63.  *  or from its distribution site: ftp://ftp.decismkr.com/dms
  64.  */
  65. /* DrSW: Uniquely identifies the software interface to a board.  This
  66.    is usually the one you want to look at when writing a driver.  It's
  67.    not as useful as you think, though, because as we should know by
  68.    now (duh), "Apple Compatible" can mean a lot of things... */
  69. /* Add known DrSW values here */
  70. enum nubus_drsw {
  71. /* NUBUS_CAT_DISPLAY */
  72. NUBUS_DRSW_APPLE        = 0x0001,
  73. NUBUS_DRSW_APPLE_HIRES  = 0x0013, /* MacII HiRes card driver */
  74. /* NUBUS_CAT_NETWORK */
  75. NUBUS_DRSW_CABLETRON    = 0x0001,
  76. NUBUS_DRSW_SONIC_LC     = 0x0001,
  77. NUBUS_DRSW_KINETICS     = 0x0103,
  78. NUBUS_DRSW_ASANTE       = 0x0104,
  79. NUBUS_DRSW_DAYNA        = 0x010b,
  80. NUBUS_DRSW_FARALLON     = 0x010c,
  81. NUBUS_DRSW_APPLE_SN     = 0x010f,
  82. NUBUS_DRSW_DAYNA2 = 0x0115,
  83. NUBUS_DRSW_FOCUS        = 0x011a,
  84. NUBUS_DRSW_ASANTE_CS    = 0x011d, /* use asante SMC9194 driver */
  85. NUBUS_DRSW_DAYNA_LC = 0x011e,
  86. /* NUBUS_CAT_CPU */
  87. NUBUS_DRSW_NONE         = 0x0000,
  88. };
  89. /* DrHW: Uniquely identifies the hardware interface to a board (or at
  90.    least, it should...  some video cards are known to incorrectly
  91.    identify themselves as Toby cards) */
  92. /* Add known DrHW values here */
  93. enum nubus_drhw {
  94. /* NUBUS_CAT_DISPLAY */
  95. NUBUS_DRHW_APPLE_TFB = 0x0001, /* Toby frame buffer card */
  96. NUBUS_DRHW_APPLE_HRVC = 0x0013, /* Mac II High Res Video card */
  97. NUBUS_DRHW_APPLE_RBV1   = 0x0018, /* IIci RBV video */
  98. NUBUS_DRHW_APPLE_MDC    = 0x0019, /* Macintosh Display Card */
  99. NUBUS_DRHW_APPLE_SONORA = 0x0022, /* Sonora built-in video */
  100. NUBUS_DRHW_APPLE_JET  = 0x0029, /* Jet framebuffer (DuoDock) */
  101. NUBUS_DRHW_APPLE_VALKYRIE = 0x002e,
  102. NUBUS_DRHW_THUNDER24 = 0x02cb, /* SuperMac Thunder/24 */
  103. /* NUBUS_CAT_NETWORK */
  104. NUBUS_DRHW_INTERLAN     = 0x0100,
  105. NUBUS_DRHW_SMC9194      = 0x0101,
  106. NUBUS_DRHW_KINETICS     = 0x0106,
  107. NUBUS_DRHW_CABLETRON    = 0x0109,
  108. NUBUS_DRHW_ASANTE_LC    = 0x010f,
  109. NUBUS_DRHW_SONIC        = 0x0110,
  110. NUBUS_DRHW_SONIC_NB = 0x0118,
  111. NUBUS_DRHW_SONIC_LC = 0x0119,
  112. /* NUBUS_CAT_COMMUNICATIONS */
  113. NUBUS_DRHW_DOVEFAX = 0x0100,
  114. };
  115. /* Resource IDs: These are the identifiers for the various weird and
  116.    wonderful tidbits of information that may or may not reside in the
  117.    NuBus ROM directory. */
  118. enum nubus_res_id {
  119. NUBUS_RESID_TYPE         = 0x0001,
  120. NUBUS_RESID_NAME         = 0x0002,
  121. NUBUS_RESID_ICON         = 0x0003,
  122. NUBUS_RESID_DRVRDIR      = 0x0004,
  123. NUBUS_RESID_LOADREC      = 0x0005,
  124. NUBUS_RESID_BOOTREC      = 0x0006,
  125. NUBUS_RESID_FLAGS        = 0x0007,
  126. NUBUS_RESID_HWDEVID      = 0x0008,
  127. NUBUS_RESID_MINOR_BASEOS = 0x000a,
  128. NUBUS_RESID_MINOR_LENGTH = 0x000b,
  129. NUBUS_RESID_MAJOR_BASEOS = 0x000c,
  130. NUBUS_RESID_MAJOR_LENGTH = 0x000d,
  131. NUBUS_RESID_CICN         = 0x000f,
  132. NUBUS_RESID_ICL8         = 0x0010,
  133. NUBUS_RESID_ICL4         = 0x0011,
  134. };
  135. /* Category-specific resources. */
  136. enum nubus_board_res_id {
  137. NUBUS_RESID_BOARDID  = 0x0020,
  138. NUBUS_RESID_PRAMINITDATA = 0x0021,
  139. NUBUS_RESID_PRIMARYINIT  = 0x0022,
  140. NUBUS_RESID_TIMEOUTCONST = 0x0023,
  141. NUBUS_RESID_VENDORINFO  = 0x0024,
  142. NUBUS_RESID_BOARDFLAGS  = 0x0025,
  143. NUBUS_RESID_SECONDINIT  = 0x0026,
  144. /* Not sure why Apple put these next two in here */
  145. NUBUS_RESID_VIDNAMES   = 0x0041,
  146. NUBUS_RESID_VIDMODES   = 0x007e
  147. };
  148. /* Fields within the vendor info directory */
  149. enum nubus_vendor_res_id {
  150. NUBUS_RESID_VEND_ID     = 0x0001,
  151. NUBUS_RESID_VEND_SERIAL = 0x0002,
  152. NUBUS_RESID_VEND_REV    = 0x0003,
  153. NUBUS_RESID_VEND_PART   = 0x0004,
  154. NUBUS_RESID_VEND_DATE   = 0x0005
  155. };
  156. enum nubus_net_res_id {
  157. NUBUS_RESID_MAC_ADDRESS  = 0x0080
  158. };
  159. enum nubus_cpu_res_id {
  160. NUBUS_RESID_MEMINFO      = 0x0081,
  161. NUBUS_RESID_ROMINFO      = 0x0082
  162. };
  163. enum nubus_display_res_id {
  164. NUBUS_RESID_GAMMADIR = 0x0040,
  165. NUBUS_RESID_FIRSTMODE = 0x0080,
  166. NUBUS_RESID_SECONDMODE = 0x0081,
  167. NUBUS_RESID_THIRDMODE = 0x0082,
  168. NUBUS_RESID_FOURTHMODE = 0x0083,
  169. NUBUS_RESID_FIFTHMODE = 0x0084,
  170. NUBUS_RESID_SIXTHMODE = 0x0085
  171. };
  172. struct nubus_dir
  173. {
  174. unsigned char *base;
  175. unsigned char *ptr;
  176. int done;
  177. int mask;
  178. };
  179. struct nubus_dirent
  180. {
  181. unsigned char *base;
  182. unsigned char type;
  183. __u32 data; /* Actually 24bits used */
  184. int mask;
  185. };
  186. struct nubus_board {
  187. struct nubus_board* next;
  188. struct nubus_dev* first_dev;
  189.         /* Only 9-E actually exist, though 0-8 are also theoretically
  190.    possible, and 0 is a special case which represents the
  191.    motherboard and onboard peripherals (Ethernet, video) */
  192. int slot;
  193. /* For slot 0, this is bogus. */
  194. char name[64];
  195. /* Format block */
  196. unsigned char* fblock;
  197. /* Root directory (does *not* always equal fblock + doffset!) */
  198. unsigned char* directory;
  199. unsigned long slot_addr;
  200. /* Offset to root directory (sometimes) */
  201. unsigned long doffset;
  202. /* Length over which to compute the crc */
  203. unsigned long rom_length;
  204. /* Completely useless most of the time */
  205. unsigned long crc;
  206. unsigned char rev;
  207. unsigned char format;
  208. unsigned char lanes;
  209. };
  210. struct nubus_dev {
  211. /* Next link in device list */
  212. struct nubus_dev* next;
  213. /* Directory entry in /proc/bus/nubus */
  214. struct proc_dir_entry* procdir;
  215. /* The functional resource ID of this device */
  216. unsigned char resid;
  217. /* These are mostly here for convenience; we could always read
  218.    them from the ROMs if we wanted to */
  219. unsigned short category;
  220. unsigned short type;
  221. unsigned short dr_sw;
  222. unsigned short dr_hw;
  223. /* This is the device's name rather than the board's.
  224.    Sometimes they are different.  Usually the board name is
  225.    more correct. */
  226. char name[64];
  227. /* MacOS driver (I kid you not) */
  228. unsigned char* driver;
  229. /* Actually this is an offset */
  230. unsigned long iobase;
  231. unsigned long iosize;
  232. unsigned char flags, hwdevid;
  233. /* Functional directory */
  234. unsigned char* directory;
  235. /* Much of our info comes from here */
  236. struct nubus_board* board;
  237. };
  238. /* This is all NuBus devices (used to find devices later on) */
  239. extern struct nubus_dev* nubus_devices;
  240. /* This is all NuBus cards */
  241. extern struct nubus_board* nubus_boards;
  242. /* Generic NuBus interface functions, modelled after the PCI interface */
  243. void nubus_scan_bus(void);
  244. extern void nubus_proc_init(void);
  245. int get_nubus_list(char *buf);
  246. int nubus_proc_attach_device(struct nubus_dev *dev);
  247. int nubus_proc_detach_device(struct nubus_dev *dev);
  248. /* If we need more precision we can add some more of these */
  249. struct nubus_dev* nubus_find_device(unsigned short category,
  250.     unsigned short type,
  251.     unsigned short dr_hw,
  252.     unsigned short dr_sw,
  253.     const struct nubus_dev* from);
  254. struct nubus_dev* nubus_find_type(unsigned short category,
  255.   unsigned short type,
  256.   const struct nubus_dev* from);
  257. /* Might have more than one device in a slot, you know... */
  258. struct nubus_dev* nubus_find_slot(unsigned int slot,
  259.   const struct nubus_dev* from);
  260. /* These are somewhat more NuBus-specific.  They all return 0 for
  261.    success and -1 for failure, as you'd expect. */
  262. /* The root directory which contains the board and functional
  263.    directories */
  264. int nubus_get_root_dir(const struct nubus_board* board,
  265.        struct nubus_dir* dir);
  266. /* The board directory */
  267. int nubus_get_board_dir(const struct nubus_board* board,
  268. struct nubus_dir* dir);
  269. /* The functional directory */
  270. int nubus_get_func_dir(const struct nubus_dev* dev,
  271.        struct nubus_dir* dir);
  272. /* These work on any directory gotten via the above */
  273. int nubus_readdir(struct nubus_dir* dir,
  274.   struct nubus_dirent* ent);
  275. int nubus_find_rsrc(struct nubus_dir* dir,
  276.     unsigned char rsrc_type,
  277.     struct nubus_dirent* ent);
  278. int nubus_rewinddir(struct nubus_dir* dir);
  279. /* Things to do with directory entries */
  280. int nubus_get_subdir(const struct nubus_dirent* ent,
  281.      struct nubus_dir* dir);
  282. void nubus_get_rsrc_mem(void* dest,
  283. const struct nubus_dirent *dirent,
  284. int len);
  285. void nubus_get_rsrc_str(void* dest,
  286. const struct nubus_dirent *dirent,
  287. int maxlen);
  288. /* We'd like to get rid of this eventually.  Only daynaport.c uses it now. */
  289. static inline void *nubus_slot_addr(int slot)
  290. {
  291. return (void *)(0xF0000000|(slot<<24));
  292. }
  293. #endif /* LINUX_NUBUS_H */