Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Atheros PB44 reference board support |
| 3 | * |
| 4 | * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <linux/i2c.h> |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 14 | #include <linux/gpio/machine.h> |
Wolfram Sang | b6480fa | 2017-05-21 23:57:26 +0200 | [diff] [blame] | 15 | #include <linux/platform_data/pcf857x.h> |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 16 | |
| 17 | #include "machtypes.h" |
Gabor Juhos | 3f348c5 | 2011-01-04 21:28:21 +0100 | [diff] [blame] | 18 | #include "dev-gpio-buttons.h" |
Gabor Juhos | d8fec1f | 2011-01-04 21:28:18 +0100 | [diff] [blame] | 19 | #include "dev-leds-gpio.h" |
Gabor Juhos | 68a1d31 | 2011-01-04 21:28:23 +0100 | [diff] [blame] | 20 | #include "dev-spi.h" |
Gabor Juhos | 7e98aa4 | 2011-06-05 23:38:46 +0200 | [diff] [blame] | 21 | #include "dev-usb.h" |
Gabor Juhos | 1f3a92d | 2012-03-14 10:36:13 +0100 | [diff] [blame] | 22 | #include "pci.h" |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 23 | |
| 24 | #define PB44_GPIO_I2C_SCL 0 |
| 25 | #define PB44_GPIO_I2C_SDA 1 |
| 26 | |
| 27 | #define PB44_GPIO_EXP_BASE 16 |
Gabor Juhos | 3f348c5 | 2011-01-04 21:28:21 +0100 | [diff] [blame] | 28 | #define PB44_GPIO_SW_RESET (PB44_GPIO_EXP_BASE + 6) |
| 29 | #define PB44_GPIO_SW_JUMP (PB44_GPIO_EXP_BASE + 8) |
Gabor Juhos | d8fec1f | 2011-01-04 21:28:18 +0100 | [diff] [blame] | 30 | #define PB44_GPIO_LED_JUMP1 (PB44_GPIO_EXP_BASE + 9) |
| 31 | #define PB44_GPIO_LED_JUMP2 (PB44_GPIO_EXP_BASE + 10) |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 32 | |
Gabor Juhos | 3f348c5 | 2011-01-04 21:28:21 +0100 | [diff] [blame] | 33 | #define PB44_KEYS_POLL_INTERVAL 20 /* msecs */ |
| 34 | #define PB44_KEYS_DEBOUNCE_INTERVAL (3 * PB44_KEYS_POLL_INTERVAL) |
| 35 | |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 36 | static struct gpiod_lookup_table pb44_i2c_gpiod_table = { |
Linus Walleij | 326345f | 2018-05-26 19:12:51 +0200 | [diff] [blame] | 37 | .dev_id = "i2c-gpio.0", |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 38 | .table = { |
| 39 | GPIO_LOOKUP_IDX("ath79-gpio", PB44_GPIO_I2C_SDA, |
Linus Walleij | 4d0ce62 | 2017-09-10 23:03:32 +0200 | [diff] [blame] | 40 | NULL, 0, GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN), |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 41 | GPIO_LOOKUP_IDX("ath79-gpio", PB44_GPIO_I2C_SCL, |
Linus Walleij | 4d0ce62 | 2017-09-10 23:03:32 +0200 | [diff] [blame] | 42 | NULL, 1, GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN), |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 43 | }, |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | static struct platform_device pb44_i2c_gpio_device = { |
| 47 | .name = "i2c-gpio", |
| 48 | .id = 0, |
| 49 | .dev = { |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 50 | .platform_data = NULL, |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 51 | } |
| 52 | }; |
| 53 | |
| 54 | static struct pcf857x_platform_data pb44_pcf857x_data = { |
| 55 | .gpio_base = PB44_GPIO_EXP_BASE, |
| 56 | }; |
| 57 | |
| 58 | static struct i2c_board_info pb44_i2c_board_info[] __initdata = { |
| 59 | { |
| 60 | I2C_BOARD_INFO("pcf8575", 0x20), |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 61 | .platform_data = &pb44_pcf857x_data, |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 62 | }, |
| 63 | }; |
| 64 | |
Gabor Juhos | d8fec1f | 2011-01-04 21:28:18 +0100 | [diff] [blame] | 65 | static struct gpio_led pb44_leds_gpio[] __initdata = { |
| 66 | { |
| 67 | .name = "pb44:amber:jump1", |
| 68 | .gpio = PB44_GPIO_LED_JUMP1, |
| 69 | .active_low = 1, |
| 70 | }, { |
| 71 | .name = "pb44:green:jump2", |
| 72 | .gpio = PB44_GPIO_LED_JUMP2, |
| 73 | .active_low = 1, |
| 74 | }, |
| 75 | }; |
| 76 | |
Gabor Juhos | 3f348c5 | 2011-01-04 21:28:21 +0100 | [diff] [blame] | 77 | static struct gpio_keys_button pb44_gpio_keys[] __initdata = { |
| 78 | { |
| 79 | .desc = "soft_reset", |
| 80 | .type = EV_KEY, |
| 81 | .code = KEY_RESTART, |
| 82 | .debounce_interval = PB44_KEYS_DEBOUNCE_INTERVAL, |
| 83 | .gpio = PB44_GPIO_SW_RESET, |
| 84 | .active_low = 1, |
| 85 | } , { |
| 86 | .desc = "jumpstart", |
| 87 | .type = EV_KEY, |
| 88 | .code = KEY_WPS_BUTTON, |
| 89 | .debounce_interval = PB44_KEYS_DEBOUNCE_INTERVAL, |
| 90 | .gpio = PB44_GPIO_SW_JUMP, |
| 91 | .active_low = 1, |
| 92 | } |
| 93 | }; |
| 94 | |
Gabor Juhos | 68a1d31 | 2011-01-04 21:28:23 +0100 | [diff] [blame] | 95 | static struct spi_board_info pb44_spi_info[] = { |
| 96 | { |
| 97 | .bus_num = 0, |
| 98 | .chip_select = 0, |
| 99 | .max_speed_hz = 25000000, |
| 100 | .modalias = "m25p64", |
| 101 | }, |
| 102 | }; |
| 103 | |
| 104 | static struct ath79_spi_platform_data pb44_spi_data = { |
| 105 | .bus_num = 0, |
| 106 | .num_chipselect = 1, |
| 107 | }; |
| 108 | |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 109 | static void __init pb44_init(void) |
| 110 | { |
Linus Walleij | b2e6355 | 2017-09-10 01:30:46 +0200 | [diff] [blame] | 111 | gpiod_add_lookup_table(&pb44_i2c_gpiod_table); |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 112 | i2c_register_board_info(0, pb44_i2c_board_info, |
| 113 | ARRAY_SIZE(pb44_i2c_board_info)); |
| 114 | platform_device_register(&pb44_i2c_gpio_device); |
Gabor Juhos | d8fec1f | 2011-01-04 21:28:18 +0100 | [diff] [blame] | 115 | |
| 116 | ath79_register_leds_gpio(-1, ARRAY_SIZE(pb44_leds_gpio), |
| 117 | pb44_leds_gpio); |
Gabor Juhos | 3f348c5 | 2011-01-04 21:28:21 +0100 | [diff] [blame] | 118 | ath79_register_gpio_keys_polled(-1, PB44_KEYS_POLL_INTERVAL, |
| 119 | ARRAY_SIZE(pb44_gpio_keys), |
| 120 | pb44_gpio_keys); |
Gabor Juhos | 68a1d31 | 2011-01-04 21:28:23 +0100 | [diff] [blame] | 121 | ath79_register_spi(&pb44_spi_data, pb44_spi_info, |
| 122 | ARRAY_SIZE(pb44_spi_info)); |
Gabor Juhos | 7e98aa4 | 2011-06-05 23:38:46 +0200 | [diff] [blame] | 123 | ath79_register_usb(); |
Gabor Juhos | 1f3a92d | 2012-03-14 10:36:13 +0100 | [diff] [blame] | 124 | ath79_register_pci(); |
Gabor Juhos | 0cde722 | 2011-01-04 21:28:17 +0100 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | MIPS_MACHINE(ATH79_MACH_PB44, "PB44", "Atheros PB44 reference board", |
| 128 | pb44_init); |