Greg Kroah-Hartman | e3b3d0f | 2017-11-06 18:11:51 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Serial Device Initialisation for Lasi/Asp/Wax/Dino |
| 4 | * |
| 5 | * (c) Copyright Matthew Wilcox <willy@debian.org> 2001-2002 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/errno.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/ioport.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/serial_core.h> |
| 14 | #include <linux/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/types.h> |
| 16 | |
| 17 | #include <asm/hardware.h> |
| 18 | #include <asm/parisc-device.h> |
| 19 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #include "8250.h" |
| 22 | |
Alan Cox | 8b4a483 | 2008-02-08 04:18:50 -0800 | [diff] [blame] | 23 | static int __init serial_init_chip(struct parisc_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 25 | struct uart_8250_port uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | unsigned long address; |
| 27 | int err; |
| 28 | |
Randy Dunlap | 6e87936 | 2022-02-14 10:00:19 -0800 | [diff] [blame] | 29 | #if defined(CONFIG_64BIT) && defined(CONFIG_IOSAPIC) |
Thomas Bogendoerfer | 9a66d18 | 2013-06-09 23:00:21 +0200 | [diff] [blame] | 30 | if (!dev->irq && (dev->id.sversion == 0xad)) |
Thomas Bogendoerfer | dd5e6d6 | 2013-07-30 02:02:16 +0200 | [diff] [blame] | 31 | dev->irq = iosapic_serial_irq(dev); |
Thomas Bogendoerfer | 9a66d18 | 2013-06-09 23:00:21 +0200 | [diff] [blame] | 32 | #endif |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | if (!dev->irq) { |
| 35 | /* We find some unattached serial ports by walking native |
| 36 | * busses. These should be silently ignored. Otherwise, |
| 37 | * what we have here is a missing parent device, so tell |
| 38 | * the user what they're missing. |
| 39 | */ |
Alan Cox | 8b4a483 | 2008-02-08 04:18:50 -0800 | [diff] [blame] | 40 | if (parisc_parent(dev)->id.hw_type != HPHW_IOA) |
Phillip Raffeck | 9f59fbf | 2016-01-14 16:08:19 +0100 | [diff] [blame] | 41 | dev_info(&dev->dev, |
Alexander Beregalov | 8e8e826 | 2009-05-28 14:34:34 -0700 | [diff] [blame] | 42 | "Serial: device 0x%llx not configured.\n" |
Matthew Wilcox | 53f01bb | 2005-10-21 22:36:40 -0400 | [diff] [blame] | 43 | "Enable support for Wax, Lasi, Asp or Dino.\n", |
Alexander Beregalov | 8e8e826 | 2009-05-28 14:34:34 -0700 | [diff] [blame] | 44 | (unsigned long long)dev->hpa.start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | return -ENODEV; |
| 46 | } |
| 47 | |
Matthew Wilcox | 53f01bb | 2005-10-21 22:36:40 -0400 | [diff] [blame] | 48 | address = dev->hpa.start; |
Alan Cox | 8b4a483 | 2008-02-08 04:18:50 -0800 | [diff] [blame] | 49 | if (dev->id.sversion != 0x8d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | address += 0x800; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 52 | memset(&uart, 0, sizeof(uart)); |
| 53 | uart.port.iotype = UPIO_MEM; |
Matthew Wilcox | 136ce40 | 2006-08-28 11:53:30 -0600 | [diff] [blame] | 54 | /* 7.272727MHz on Lasi. Assumed the same for Dino, Wax and Timi. */ |
Thomas Bogendoerfer | 9a66d18 | 2013-06-09 23:00:21 +0200 | [diff] [blame] | 55 | uart.port.uartclk = (dev->id.sversion != 0xad) ? |
| 56 | 7272727 : 1843200; |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 57 | uart.port.mapbase = address; |
Christoph Hellwig | 4bdc0d6 | 2020-01-06 09:43:50 +0100 | [diff] [blame] | 58 | uart.port.membase = ioremap(address, 16); |
Arvind Yadav | 2cc32b1 | 2017-01-19 13:30:44 +0530 | [diff] [blame] | 59 | if (!uart.port.membase) { |
| 60 | dev_warn(&dev->dev, "Failed to map memory\n"); |
| 61 | return -ENOMEM; |
| 62 | } |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 63 | uart.port.irq = dev->irq; |
| 64 | uart.port.flags = UPF_BOOT_AUTOCONF; |
| 65 | uart.port.dev = &dev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 67 | err = serial8250_register_8250_port(&uart); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | if (err < 0) { |
Phillip Raffeck | 9f59fbf | 2016-01-14 16:08:19 +0100 | [diff] [blame] | 69 | dev_warn(&dev->dev, |
| 70 | "serial8250_register_8250_port returned error %d\n", |
| 71 | err); |
Alan Cox | 2655a2c | 2012-07-12 12:59:50 +0100 | [diff] [blame] | 72 | iounmap(uart.port.membase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return err; |
| 74 | } |
Alan Cox | 8b4a483 | 2008-02-08 04:18:50 -0800 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return 0; |
| 77 | } |
| 78 | |
Helge Deller | 9e466f1 | 2017-08-21 21:56:08 +0200 | [diff] [blame] | 79 | static const struct parisc_device_id serial_tbl[] __initconst = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00075 }, |
| 81 | { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0008c }, |
| 82 | { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0008d }, |
Thomas Bogendoerfer | 9a66d18 | 2013-06-09 23:00:21 +0200 | [diff] [blame] | 83 | { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x000ad }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { 0 } |
| 85 | }; |
| 86 | |
| 87 | /* Hack. Some machines have SERIAL_0 attached to Lasi and SERIAL_1 |
| 88 | * attached to Dino. Unfortunately, Dino appears before Lasi in the device |
| 89 | * tree. To ensure that ttyS0 == SERIAL_0, we register two drivers; one |
| 90 | * which only knows about Lasi and then a second which will find all the |
| 91 | * other serial ports. HPUX ignores this problem. |
| 92 | */ |
Helge Deller | 9e466f1 | 2017-08-21 21:56:08 +0200 | [diff] [blame] | 93 | static const struct parisc_device_id lasi_tbl[] __initconst = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03B, 0x0008C }, /* C1xx/C1xxL */ |
| 95 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03C, 0x0008C }, /* B132L */ |
| 96 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03D, 0x0008C }, /* B160L */ |
| 97 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03E, 0x0008C }, /* B132L+ */ |
| 98 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03F, 0x0008C }, /* B180L+ */ |
| 99 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x046, 0x0008C }, /* Rocky2 120 */ |
| 100 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x047, 0x0008C }, /* Rocky2 150 */ |
| 101 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x04E, 0x0008C }, /* Kiji L2 132 */ |
| 102 | { HPHW_FIO, HVERSION_REV_ANY_ID, 0x056, 0x0008C }, /* Raven+ */ |
| 103 | { 0 } |
| 104 | }; |
| 105 | |
| 106 | |
| 107 | MODULE_DEVICE_TABLE(parisc, serial_tbl); |
| 108 | |
Helge Deller | 9e466f1 | 2017-08-21 21:56:08 +0200 | [diff] [blame] | 109 | static struct parisc_driver lasi_driver __refdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | .name = "serial_1", |
| 111 | .id_table = lasi_tbl, |
| 112 | .probe = serial_init_chip, |
| 113 | }; |
| 114 | |
Helge Deller | 9e466f1 | 2017-08-21 21:56:08 +0200 | [diff] [blame] | 115 | static struct parisc_driver serial_driver __refdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | .name = "serial", |
| 117 | .id_table = serial_tbl, |
| 118 | .probe = serial_init_chip, |
| 119 | }; |
| 120 | |
Adrian Bunk | 9f561df | 2008-10-18 20:27:45 -0700 | [diff] [blame] | 121 | static int __init probe_serial_gsc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | register_parisc_driver(&lasi_driver); |
| 124 | register_parisc_driver(&serial_driver); |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | module_init(probe_serial_gsc); |
Adrian Bunk | 920519c | 2008-07-23 21:29:44 -0700 | [diff] [blame] | 129 | |
| 130 | MODULE_LICENSE("GPL"); |