Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/arch/sh/boards/renesas/systemh/irq.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2000 Kazumoto Kojima |
| 5 | * |
| 6 | * Hitachi SystemH Support. |
| 7 | * |
| 8 | * Modified for 7751 SystemH by |
| 9 | * Jonathan Short. |
| 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/init.h> |
| 13 | #include <linux/irq.h> |
| 14 | |
| 15 | #include <linux/hdreg.h> |
| 16 | #include <linux/ide.h> |
| 17 | #include <asm/io.h> |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 18 | #include <asm/systemh7751.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/smc37c93x.h> |
| 20 | |
| 21 | /* address of external interrupt mask register |
| 22 | * address must be set prior to use these (maybe in init_XXX_irq()) |
| 23 | * XXX : is it better to use .config than specifying it in code? */ |
| 24 | static unsigned long *systemh_irq_mask_register = (unsigned long *)0xB3F10004; |
| 25 | static unsigned long *systemh_irq_request_register = (unsigned long *)0xB3F10000; |
| 26 | |
| 27 | /* forward declaration */ |
| 28 | static unsigned int startup_systemh_irq(unsigned int irq); |
| 29 | static void shutdown_systemh_irq(unsigned int irq); |
| 30 | static void enable_systemh_irq(unsigned int irq); |
| 31 | static void disable_systemh_irq(unsigned int irq); |
| 32 | static void mask_and_ack_systemh(unsigned int); |
| 33 | static void end_systemh_irq(unsigned int irq); |
| 34 | |
| 35 | /* hw_interrupt_type */ |
| 36 | static struct hw_interrupt_type systemh_irq_type = { |
Thomas Gleixner | 08d0fd0 | 2005-09-10 00:26:42 -0700 | [diff] [blame] | 37 | .typename = " SystemH Register", |
| 38 | .startup = startup_systemh_irq, |
| 39 | .shutdown = shutdown_systemh_irq, |
| 40 | .enable = enable_systemh_irq, |
| 41 | .disable = disable_systemh_irq, |
| 42 | .ack = mask_and_ack_systemh, |
| 43 | .end = end_systemh_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | static unsigned int startup_systemh_irq(unsigned int irq) |
| 47 | { |
| 48 | enable_systemh_irq(irq); |
| 49 | return 0; /* never anything pending */ |
| 50 | } |
| 51 | |
| 52 | static void shutdown_systemh_irq(unsigned int irq) |
| 53 | { |
| 54 | disable_systemh_irq(irq); |
| 55 | } |
| 56 | |
| 57 | static void disable_systemh_irq(unsigned int irq) |
| 58 | { |
| 59 | if (systemh_irq_mask_register) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | unsigned long val, mask = 0x01 << 1; |
| 61 | |
| 62 | /* Clear the "irq"th bit in the mask and set it in the request */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | val = ctrl_inl((unsigned long)systemh_irq_mask_register); |
| 64 | val &= ~mask; |
| 65 | ctrl_outl(val, (unsigned long)systemh_irq_mask_register); |
| 66 | |
| 67 | val = ctrl_inl((unsigned long)systemh_irq_request_register); |
| 68 | val |= mask; |
| 69 | ctrl_outl(val, (unsigned long)systemh_irq_request_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
| 73 | static void enable_systemh_irq(unsigned int irq) |
| 74 | { |
| 75 | if (systemh_irq_mask_register) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | unsigned long val, mask = 0x01 << 1; |
| 77 | |
| 78 | /* Set "irq"th bit in the mask register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | val = ctrl_inl((unsigned long)systemh_irq_mask_register); |
| 80 | val |= mask; |
| 81 | ctrl_outl(val, (unsigned long)systemh_irq_mask_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
| 85 | static void mask_and_ack_systemh(unsigned int irq) |
| 86 | { |
| 87 | disable_systemh_irq(irq); |
| 88 | } |
| 89 | |
| 90 | static void end_systemh_irq(unsigned int irq) |
| 91 | { |
| 92 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) |
| 93 | enable_systemh_irq(irq); |
| 94 | } |
| 95 | |
| 96 | void make_systemh_irq(unsigned int irq) |
| 97 | { |
| 98 | disable_irq_nosync(irq); |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 99 | irq_desc[irq].chip = &systemh_irq_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | disable_systemh_irq(irq); |
| 101 | } |
| 102 | |