via.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:14k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * 6522 Versatile Interface Adapter (VIA)
  3.  *
  4.  * There are two of these on the Mac II. Some IRQ's are vectored
  5.  * via them as are assorted bits and bobs - eg RTC, ADB.
  6.  *
  7.  * CSA: Motorola seems to have removed documentation on the 6522 from
  8.  * their web site; try
  9.  *     http://nerini.drf.com/vectrex/other/text/chips/6522/
  10.  *     http://www.zymurgy.net/classic/vic20/vicdet1.htm
  11.  * and
  12.  *     http://193.23.168.87/mikro_laborversuche/via_iobaustein/via6522_1.html
  13.  * for info.  A full-text web search on 6522 AND VIA will probably also
  14.  * net some usefulness. <cananian@alumni.princeton.edu> 20apr1999
  15.  *
  16.  * PRAM/RTC access algorithms are from the NetBSD RTC toolkit version 1.08b
  17.  * by Erik Vogan and adapted to Linux by Joshua M. Thompson (funaho@jurai.org)
  18.  *
  19.  */
  20. #include <linux/types.h>
  21. #include <linux/kernel.h>
  22. #include <linux/mm.h>
  23. #include <linux/delay.h>
  24. #include <linux/init.h>
  25. #include <linux/ide.h>
  26. #include <asm/traps.h>
  27. #include <asm/bootinfo.h> 
  28. #include <asm/macintosh.h> 
  29. #include <asm/macints.h>
  30. #include <asm/machw.h> 
  31. #include <asm/mac_via.h>
  32. #include <asm/mac_psc.h>
  33. volatile __u8 *via1, *via2;
  34. #if 0
  35. /* See note in mac_via.h about how this is possibly not useful */
  36. volatile long *via_memory_bogon=(long *)&via_memory_bogon;
  37. #endif
  38. int  rbv_present,via_alt_mapping;
  39. __u8 rbv_clear;
  40. /*
  41.  * Globals for accessing the VIA chip registers without having to
  42.  * check if we're hitting a real VIA or an RBV. Normally you could
  43.  * just hit the combined register (ie, vIER|rIER) but that seems to
  44.  * break on AV Macs...probably because they actually decode more than
  45.  * eight address bits. Why can't Apple engineers at least be
  46.  * _consistantly_ lazy?                          - 1999-05-21 (jmt)
  47.  */
  48. static int gIER,gIFR,gBufA,gBufB;
  49. /*
  50.  * Timer defs.
  51.  */
  52. #define TICK_SIZE 10000
  53. #define MAC_CLOCK_TICK (783300/HZ) /* ticks per HZ */
  54. #define MAC_CLOCK_LOW (MAC_CLOCK_TICK&0xFF)
  55. #define MAC_CLOCK_HIGH (MAC_CLOCK_TICK>>8)
  56. static int  nubus_active = 0;
  57. void via_debug_dump(void);
  58. void via1_irq(int, void *, struct pt_regs *);
  59. void via2_irq(int, void *, struct pt_regs *);
  60. void via_nubus_irq(int, void *, struct pt_regs *);
  61. void via_irq_enable(int irq);
  62. void via_irq_disable(int irq);
  63. void via_irq_clear(int irq);
  64. extern void mac_bang(int, void *, struct pt_regs *);
  65. extern void mac_scc_dispatch(int, void *, struct pt_regs *);
  66. extern int oss_present;
  67. /*
  68.  * Initialize the VIAs
  69.  *
  70.  * First we figure out where they actually _are_ as well as what type of
  71.  * VIA we have for VIA2 (it could be a real VIA or an RBV or even an OSS.)
  72.  * Then we pretty much clear them out and disable all IRQ sources.
  73.  *
  74.  * Note: the OSS is actually "detected" here and not in oss_init(). It just
  75.  *  seems more logical to do it here since via_init() needs to know
  76.  *  these things anyways.
  77.  */
  78. void __init via_init(void)
  79. {
  80. switch(macintosh_config->via_type) {
  81. /* IIci, IIsi, IIvx, IIvi (P6xx), LC series */
  82. case MAC_VIA_IIci:
  83. via1 = (void *) VIA1_BASE;
  84. if (macintosh_config->ident == MAC_MODEL_IIFX) {
  85. via2 = NULL;
  86. rbv_present = 0;
  87. oss_present = 1;
  88. } else {
  89. via2 = (void *) RBV_BASE;
  90. rbv_present = 1;
  91. oss_present = 0;
  92. }
  93. if (macintosh_config->ident == MAC_MODEL_LCIII) {
  94. rbv_clear = 0x00;
  95. } else {
  96. /* on most RBVs (& unlike the VIAs), you   */
  97. /* need to set bit 7 when you write to IFR */
  98. /* in order for your clear to occur.       */
  99. rbv_clear = 0x80;
  100. }
  101. gIER = rIER;
  102. gIFR = rIFR;
  103. gBufA = rSIFR;
  104. gBufB = rBufB;
  105. break;
  106. /* Quadra and early MacIIs agree on the VIA locations */
  107. case MAC_VIA_QUADRA:
  108. case MAC_VIA_II:
  109. via1 = (void *) VIA1_BASE;
  110. via2 = (void *) VIA2_BASE;
  111. rbv_present = 0;
  112. oss_present = 0;
  113. rbv_clear = 0x00;
  114. gIER = vIER;
  115. gIFR = vIFR;
  116. gBufA = vBufA;
  117. gBufB = vBufB;
  118. break;
  119. default:
  120. panic("UNKNOWN VIA TYPE");
  121. }
  122. printk("VIA1 at %p is a 6522 or clonen", via1);
  123. printk("VIA2 at %p is ", via2);
  124. if (rbv_present) {
  125. printk("an RBVn");
  126. } else if (oss_present) {
  127. printk("an OSSn");
  128. } else {
  129. printk("a 6522 or clonen");
  130. }
  131. #ifdef DEBUG_VIA
  132. via_debug_dump();
  133. #endif
  134. /*
  135.  * Shut down all IRQ sources, reset the timers, and
  136.  * kill the timer latch on VIA1.
  137.  */
  138. via1[vIER] = 0x7F;
  139. via1[vIFR] = 0x7F;
  140. via1[vT1LL] = 0;
  141. via1[vT1LH] = 0;
  142. via1[vT1CL] = 0;
  143. via1[vT1CH] = 0;
  144. via1[vT2CL] = 0;
  145. via1[vT2CH] = 0;
  146. via1[vACR] &= 0x3F;
  147. /* 
  148.  * SE/30: disable video IRQ
  149.  * XXX: testing for SE/30 VBL
  150.  */
  151. if (macintosh_config->ident == MAC_MODEL_SE30) {
  152. via1[vDirB] |= 0x40;
  153. via1[vBufB] |= 0x40;
  154. /*
  155.  * Set the RTC bits to a known state: all lines to outputs and
  156.  * RTC disabled (yes that's 0 to enable and 1 to disable).
  157.  */
  158. via1[vDirB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk | VIA1B_vRTCData);
  159. via1[vBufB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk);
  160. /* Everything below this point is VIA2/RBV only... */
  161. if (oss_present) return;
  162. #if 1
  163. /* Some machines support an alternate IRQ mapping that spreads  */
  164. /* Ethernet and Sound out to their own autolevel IRQs and moves */
  165. /* VIA1 to level 6. A/UX uses this mapping and we do too.  Note */
  166. /* that the IIfx emulates this alternate mapping using the OSS. */
  167. switch(macintosh_config->ident) {
  168. case MAC_MODEL_C610:
  169. case MAC_MODEL_Q610:
  170. case MAC_MODEL_C650:
  171. case MAC_MODEL_Q650:
  172. case MAC_MODEL_Q700:
  173. case MAC_MODEL_Q800:
  174. case MAC_MODEL_Q900:
  175. case MAC_MODEL_Q950:
  176. via_alt_mapping = 1;
  177. via1[vDirB] |= 0x40;
  178. via1[vBufB] &= ~0x40;
  179. break;
  180. default:
  181. via_alt_mapping = 0;
  182. break;
  183. }
  184. #else
  185. /* The alernate IRQ mapping seems to just not work. Anyone with a   */
  186. /* supported machine is welcome to take a stab at fixing it. It     */
  187. /* _should_ work on the following Quadras: 610,650,700,800,900,950  */
  188. /*                                               - 1999-06-12 (jmt) */
  189. via_alt_mapping = 0;
  190. #endif
  191. /*
  192.  * Now initialize VIA2. For RBV we just kill all interrupts;
  193.  * for a regular VIA we also reset the timers and stuff.
  194.  */
  195. via2[gIER] = 0x7F;
  196. via2[gIFR] = 0x7F | rbv_clear;
  197. if (!rbv_present) {
  198. via2[vT1LL] = 0;
  199. via2[vT1LH] = 0;
  200. via2[vT1CL] = 0;
  201. via2[vT1CH] = 0;
  202. via2[vT2CL] = 0;
  203. via2[vT2CH] = 0;
  204. via2[vACR] &= 0x3F;
  205. }
  206. }
  207. /*
  208.  * Start the 100 Hz clock
  209.  */
  210. void __init via_init_clock(void (*func)(int, void *, struct pt_regs *))
  211. {
  212. via1[vACR] |= 0x40;
  213. via1[vT1LL] = MAC_CLOCK_LOW;
  214. via1[vT1LH] = MAC_CLOCK_HIGH;
  215. via1[vT1CL] = MAC_CLOCK_LOW;
  216. via1[vT1CH] = MAC_CLOCK_HIGH;
  217. request_irq(IRQ_MAC_TIMER_1, func, IRQ_FLG_LOCK, "timer", func);
  218. }
  219. /*
  220.  * Register the interrupt dispatchers for VIA or RBV machines only.
  221.  */
  222. void __init via_register_interrupts(void)
  223. {
  224. if (via_alt_mapping) {
  225. sys_request_irq(IRQ_AUTO_1, via1_irq, IRQ_FLG_LOCK|IRQ_FLG_FAST,
  226. "software", (void *) via1);
  227. sys_request_irq(IRQ_AUTO_6, via1_irq, IRQ_FLG_LOCK|IRQ_FLG_FAST,
  228. "via1", (void *) via1);
  229. } else {
  230. sys_request_irq(IRQ_AUTO_1, via1_irq, IRQ_FLG_LOCK|IRQ_FLG_FAST,
  231. "via1", (void *) via1);
  232. #if 0 /* interferes with serial on some machines */
  233. if (!psc_present) {
  234. sys_request_irq(IRQ_AUTO_6, mac_bang, IRQ_FLG_LOCK,
  235. "Off Switch", mac_bang);
  236. }
  237. #endif
  238. }
  239. sys_request_irq(IRQ_AUTO_2, via2_irq, IRQ_FLG_LOCK|IRQ_FLG_FAST,
  240. "via2", (void *) via2);
  241. if (!psc_present) {
  242. sys_request_irq(IRQ_AUTO_4, mac_scc_dispatch, IRQ_FLG_LOCK,
  243. "scc", mac_scc_dispatch);
  244. }
  245. request_irq(IRQ_MAC_NUBUS, via_nubus_irq, IRQ_FLG_LOCK|IRQ_FLG_FAST,
  246. "nubus", (void *) via2);
  247. }
  248. /*
  249.  * Debugging dump, used in various places to see what's going on.
  250.  */
  251. void via_debug_dump(void)
  252. {
  253. printk("VIA1: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02Xn",
  254. (uint) via1[vDirA], (uint) via1[vDirB], (uint) via1[vACR]);
  255. printk("         PCR = 0x%02X  IFR = 0x%02X IER = 0x%02Xn",
  256. (uint) via1[vPCR], (uint) via1[vIFR], (uint) via1[vIER]);
  257. if (oss_present) {
  258. printk("VIA2: <OSS>n");
  259. } else if (rbv_present) {
  260. printk("VIA2:  IFR = 0x%02X  IER = 0x%02Xn",
  261. (uint) via2[rIFR], (uint) via2[rIER]);
  262. printk("      SIFR = 0x%02X SIER = 0x%02Xn",
  263. (uint) via2[rSIFR], (uint) via2[rSIER]);
  264. } else {
  265. printk("VIA2: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02Xn",
  266. (uint) via2[vDirA], (uint) via2[vDirB],
  267. (uint) via2[vACR]);
  268. printk("         PCR = 0x%02X  IFR = 0x%02X IER = 0x%02Xn",
  269. (uint) via2[vPCR],
  270. (uint) via2[vIFR], (uint) via2[vIER]);
  271. }
  272. }
  273. /*
  274.  * This is always executed with interrupts disabled.
  275.  *
  276.  * TBI: get time offset between scheduling timer ticks
  277.  */
  278. unsigned long mac_gettimeoffset (void)
  279. {
  280. unsigned long ticks, offset = 0;
  281. /* read VIA1 timer 2 current value */
  282. ticks = via1[vT1CL] | (via1[vT1CH] << 8);
  283. /* The probability of underflow is less than 2% */
  284. if (ticks > MAC_CLOCK_TICK - MAC_CLOCK_TICK / 50)
  285. /* Check for pending timer interrupt in VIA1 IFR */
  286. if (via1[vIFR] & 0x40) offset = TICK_SIZE;
  287. ticks = MAC_CLOCK_TICK - ticks;
  288. ticks = ticks * 10000L / MAC_CLOCK_TICK;
  289. return ticks + offset;
  290. }
  291. /*
  292.  * Flush the L2 cache on Macs that have it by flipping
  293.  * the system into 24-bit mode for an instant.
  294.  */
  295. void via_flush_cache(void)
  296. {
  297. via2[gBufB] &= ~VIA2B_vMode32;
  298. via2[gBufB] |= VIA2B_vMode32;
  299. }
  300. /*
  301.  * Return the status of the L2 cache on a IIci
  302.  */
  303. int via_get_cache_disable(void)
  304. {
  305. /* Safeguard against being called accidentally */
  306. if (!via2) {
  307. printk(KERN_ERR "via_get_cache_disable called on a non-VIA machine!n");
  308. return 1;
  309. }
  310. return (int) via2[gBufB] & VIA2B_vCDis;
  311. }
  312. /*
  313.  * Initialize VIA2 for Nubus access
  314.  */
  315. void __init via_nubus_init(void)
  316. {
  317. /* don't set nubus_active = 0 here, it kills the Baboon */
  318. /* interrupt that we've already registered. */
  319. /* unlock nubus transactions */
  320. if (!rbv_present) {
  321. /* set the line to be an output on non-RBV machines */
  322. via2[vDirB] |= 0x02;
  323. }
  324. /* this seems to be an ADB bit on PMU machines */
  325. /* according to MkLinux.  -- jmt               */
  326. if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
  327.     (macintosh_config->adb_type != MAC_ADB_PB2)) {
  328. via2[gBufB] |= 0x02;
  329. }
  330. /* disable nubus slot interrupts. */
  331. if (rbv_present) {
  332. via2[rSIER] = 0x7F;
  333. via2[rSIER] = nubus_active | 0x80;
  334. } else {
  335. via2[vBufA] = 0xFF;
  336. via2[vDirA] = ~nubus_active;
  337. }
  338. }
  339. /*
  340.  * The generic VIA interrupt routines (shamelessly stolen from Alan Cox's
  341.  * via6522.c :-), disable/pending masks added.
  342.  *
  343.  * The new interrupt architecture in macints.c takes care of a lot of the
  344.  * gruntwork for us, including tallying the interrupts and calling the
  345.  * handlers on the linked list. All we need to do here is basically generate
  346.  * the machspec interrupt number after clearing the interrupt.
  347.  */
  348. void via1_irq(int irq, void *dev_id, struct pt_regs *regs)
  349. {
  350. int irq_bit, i;
  351. unsigned char events, mask;
  352. mask = via1[vIER] & 0x7F;
  353. if (!(events = via1[vIFR] & mask)) return;
  354. for (i = 0, irq_bit = 1 ; i < 7 ; i++, irq_bit <<= 1)
  355. if (events & irq_bit) {
  356. via1[vIER] = irq_bit;
  357. mac_do_irq_list(VIA1_SOURCE_BASE + i, regs);
  358. via1[vIFR] = irq_bit;
  359. via1[vIER] = irq_bit | 0x80;
  360. }
  361. #if 0 /* freakin' pmu is doing weird stuff */
  362. if (!oss_present) {
  363. /* This (still) seems to be necessary to get IDE
  364.    working.  However, if you enable VBL interrupts,
  365.    you're screwed... */
  366. /* FIXME: should we check the SLOTIRQ bit before
  367.                    pulling this stunt? */
  368. /* No, it won't be set. that's why we're doing this. */
  369. via_irq_disable(IRQ_MAC_NUBUS);
  370. via_irq_clear(IRQ_MAC_NUBUS);
  371. mac_do_irq_list(IRQ_MAC_NUBUS, regs);
  372. via_irq_enable(IRQ_MAC_NUBUS);
  373. }
  374. #endif
  375. }
  376. void via2_irq(int irq, void *dev_id, struct pt_regs *regs)
  377. {
  378. int irq_bit, i;
  379. unsigned char events, mask;
  380. mask = via2[gIER] & 0x7F;
  381. if (!(events = via2[gIFR] & mask)) return;
  382. for (i = 0, irq_bit = 1 ; i < 7 ; i++, irq_bit <<= 1)
  383. if (events & irq_bit) {
  384. via2[gIER] = irq_bit;
  385. mac_do_irq_list(VIA2_SOURCE_BASE + i, regs);
  386. via2[gIFR] = irq_bit | rbv_clear;
  387. via2[gIER] = irq_bit | 0x80;
  388. }
  389. }
  390. /*
  391.  * Dispatch Nubus interrupts. We are called as a secondary dispatch by the
  392.  * VIA2 dispatcher as a fast interrupt handler.
  393.  */
  394. void via_nubus_irq(int irq, void *dev_id, struct pt_regs *regs)
  395. {
  396. int irq_bit, i;
  397. unsigned char events;
  398. if (!(events = ~via2[gBufA] & nubus_active)) return;
  399. for (i = 0, irq_bit = 1 ; i < 7 ; i++, irq_bit <<= 1) {
  400. if (events & irq_bit) {
  401. via_irq_disable(NUBUS_SOURCE_BASE + i);
  402. mac_do_irq_list(NUBUS_SOURCE_BASE + i, regs);
  403. via_irq_enable(NUBUS_SOURCE_BASE + i);
  404. }
  405. }
  406. }
  407. void via_irq_enable(int irq) {
  408. int irq_src = IRQ_SRC(irq);
  409. int irq_idx = IRQ_IDX(irq);
  410. int irq_bit = 1 << irq_idx;
  411. #ifdef DEBUG_IRQUSE
  412. printk("via_irq_enable(%d)n", irq);
  413. #endif
  414. if (irq_src == 1) {
  415. via1[vIER] = irq_bit | 0x80;
  416. } else if (irq_src == 2) {
  417. /*
  418.  * Set vPCR for SCSI interrupts (but not on RBV)
  419.  */
  420. if ((irq_idx == 0) && !rbv_present) {
  421. if (macintosh_config->scsi_type == MAC_SCSI_OLD) {
  422. /* CB2 (IRQ) indep. input, positive edge */
  423. /* CA2 (DRQ) indep. input, positive edge */
  424. via2[vPCR] = 0x66;
  425. } else {
  426. /* CB2 (IRQ) indep. input, negative edge */
  427. /* CA2 (DRQ) indep. input, negative edge */
  428. via2[vPCR] = 0x22;
  429. }
  430. }
  431. via2[gIER] = irq_bit | 0x80;
  432. } else if (irq_src == 7) {
  433. if (rbv_present) {
  434. /* enable the slot interrupt. SIER works like IER. */
  435. via2[rSIER] = IER_SET_BIT(irq_idx);
  436. } else {
  437. /* Make sure the bit is an input, to enable the irq */
  438. via2[vDirA] &= ~irq_bit;
  439. }
  440. nubus_active |= irq_bit;
  441. }
  442. }
  443. void via_irq_disable(int irq) {
  444. int irq_src = IRQ_SRC(irq);
  445. int irq_idx = IRQ_IDX(irq);
  446. int irq_bit = 1 << irq_idx;
  447. #ifdef DEBUG_IRQUSE
  448. printk("via_irq_disable(%d)n", irq);
  449. #endif
  450. if (irq_src == 1) {
  451. via1[vIER] = irq_bit;
  452. } else if (irq_src == 2) {
  453. via2[gIER] = irq_bit;
  454. } else if (irq_src == 7) {
  455. if (rbv_present) {
  456. /* disable the slot interrupt.  SIER works like IER. */
  457. via2[rSIER] = IER_CLR_BIT(irq_idx);
  458. } else {
  459. /* disable the nubus irq by changing dir to output */
  460. via2[vDirA] |= irq_bit;
  461. }
  462. nubus_active &= ~irq_bit;
  463. }
  464. }
  465. void via_irq_clear(int irq) {
  466. int irq_src = IRQ_SRC(irq);
  467. int irq_idx = IRQ_IDX(irq);
  468. int irq_bit = 1 << irq_idx;
  469. if (irq_src == 1) {
  470. via1[vIFR] = irq_bit;
  471. } else if (irq_src == 2) {
  472. via2[gIFR] = irq_bit | rbv_clear;
  473. } else if (irq_src == 7) {
  474. /* FIXME: hmm.. */
  475. }
  476. }
  477. /*
  478.  * Returns nonzero if an interrupt is pending on the given
  479.  * VIA/IRQ combination.
  480.  */
  481. int via_irq_pending(int irq)
  482. {
  483. int irq_src = IRQ_SRC(irq);
  484. int irq_idx = IRQ_IDX(irq);
  485. int irq_bit = 1 << irq_idx;
  486. if (irq_src == 1) {
  487. return via1[vIFR] & irq_bit;
  488. } else if (irq_src == 2) {
  489. return via2[gIFR] & irq_bit;
  490. } else if (irq_src == 7) {
  491. return ~via2[gBufA] & irq_bit;
  492. }
  493. return 0;
  494. }