Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 2 | /* |
Ingo Molnar | c5f48c0 | 2018-12-03 11:44:51 +0100 | [diff] [blame] | 3 | * H8S interrupt controller driver |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 4 | * |
| 5 | * Copyright 2015 Yoshinori Sato <ysato@users.sourceforge.jp> |
| 6 | */ |
| 7 | |
| 8 | #include <linux/irq.h> |
Joel Porquet | 41a83e06 | 2015-07-07 17:11:46 -0400 | [diff] [blame] | 9 | #include <linux/irqchip.h> |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 10 | #include <linux/of_address.h> |
| 11 | #include <linux/of_irq.h> |
| 12 | #include <asm/io.h> |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 13 | |
| 14 | static void *intc_baseaddr; |
Yoshinori Sato | 558e669 | 2018-08-13 10:07:46 +0900 | [diff] [blame] | 15 | #define IPRA (intc_baseaddr) |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 16 | |
| 17 | static const unsigned char ipr_table[] = { |
| 18 | 0x03, 0x02, 0x01, 0x00, 0x13, 0x12, 0x11, 0x10, /* 16 - 23 */ |
| 19 | 0x23, 0x22, 0x21, 0x20, 0x33, 0x32, 0x31, 0x30, /* 24 - 31 */ |
| 20 | 0x43, 0x42, 0x41, 0x40, 0x53, 0x53, 0x52, 0x52, /* 32 - 39 */ |
| 21 | 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, /* 40 - 47 */ |
| 22 | 0x50, 0x50, 0x50, 0x50, 0x63, 0x63, 0x63, 0x63, /* 48 - 55 */ |
| 23 | 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, /* 56 - 63 */ |
| 24 | 0x61, 0x61, 0x61, 0x61, 0x60, 0x60, 0x60, 0x60, /* 64 - 71 */ |
| 25 | 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, /* 72 - 79 */ |
| 26 | 0x71, 0x71, 0x71, 0x71, 0x70, 0x83, 0x82, 0x81, /* 80 - 87 */ |
| 27 | 0x80, 0x80, 0x80, 0x80, 0x93, 0x93, 0x93, 0x93, /* 88 - 95 */ |
| 28 | 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, /* 96 - 103 */ |
| 29 | 0x90, 0x90, 0x90, 0x90, 0xa3, 0xa3, 0xa3, 0xa3, /* 104 - 111 */ |
| 30 | 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, /* 112 - 119 */ |
| 31 | 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, /* 120 - 127 */ |
| 32 | }; |
| 33 | |
| 34 | static void h8s_disable_irq(struct irq_data *data) |
| 35 | { |
| 36 | int pos; |
Yoshinori Sato | 558e669 | 2018-08-13 10:07:46 +0900 | [diff] [blame] | 37 | void __iomem *addr; |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 38 | unsigned short pri; |
| 39 | int irq = data->irq; |
| 40 | |
| 41 | addr = IPRA + ((ipr_table[irq - 16] & 0xf0) >> 3); |
| 42 | pos = (ipr_table[irq - 16] & 0x0f) * 4; |
| 43 | pri = ~(0x000f << pos); |
Guenter Roeck | be13326 | 2015-12-15 20:30:37 -0800 | [diff] [blame] | 44 | pri &= readw(addr); |
| 45 | writew(pri, addr); |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | static void h8s_enable_irq(struct irq_data *data) |
| 49 | { |
| 50 | int pos; |
Yoshinori Sato | 558e669 | 2018-08-13 10:07:46 +0900 | [diff] [blame] | 51 | void __iomem *addr; |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 52 | unsigned short pri; |
| 53 | int irq = data->irq; |
| 54 | |
| 55 | addr = IPRA + ((ipr_table[irq - 16] & 0xf0) >> 3); |
| 56 | pos = (ipr_table[irq - 16] & 0x0f) * 4; |
| 57 | pri = ~(0x000f << pos); |
Guenter Roeck | be13326 | 2015-12-15 20:30:37 -0800 | [diff] [blame] | 58 | pri &= readw(addr); |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 59 | pri |= 1 << pos; |
Guenter Roeck | be13326 | 2015-12-15 20:30:37 -0800 | [diff] [blame] | 60 | writew(pri, addr); |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | struct irq_chip h8s_irq_chip = { |
| 64 | .name = "H8S-INTC", |
| 65 | .irq_enable = h8s_enable_irq, |
| 66 | .irq_disable = h8s_disable_irq, |
| 67 | }; |
| 68 | |
| 69 | static __init int irq_map(struct irq_domain *h, unsigned int virq, |
| 70 | irq_hw_number_t hw_irq_num) |
| 71 | { |
| 72 | irq_set_chip_and_handler(virq, &h8s_irq_chip, handle_simple_irq); |
| 73 | |
| 74 | return 0; |
| 75 | } |
| 76 | |
Tobias Klauser | c926247 | 2017-06-02 10:20:58 +0200 | [diff] [blame] | 77 | static const struct irq_domain_ops irq_ops = { |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 78 | .map = irq_map, |
| 79 | .xlate = irq_domain_xlate_onecell, |
| 80 | }; |
| 81 | |
| 82 | static int __init h8s_intc_of_init(struct device_node *intc, |
| 83 | struct device_node *parent) |
| 84 | { |
| 85 | struct irq_domain *domain; |
| 86 | int n; |
| 87 | |
| 88 | intc_baseaddr = of_iomap(intc, 0); |
| 89 | BUG_ON(!intc_baseaddr); |
| 90 | |
| 91 | /* All interrupt priority is 0 (disable) */ |
| 92 | /* IPRA to IPRK */ |
| 93 | for (n = 0; n <= 'k' - 'a'; n++) |
Guenter Roeck | be13326 | 2015-12-15 20:30:37 -0800 | [diff] [blame] | 94 | writew(0x0000, IPRA + (n * 2)); |
Yoshinori Sato | 8a76448 | 2015-05-10 02:30:47 +0900 | [diff] [blame] | 95 | |
| 96 | domain = irq_domain_add_linear(intc, NR_IRQS, &irq_ops, NULL); |
| 97 | BUG_ON(!domain); |
| 98 | irq_set_default_host(domain); |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | IRQCHIP_DECLARE(h8s_intc, "renesas,h8s-intc", h8s_intc_of_init); |