blob: 8a53b74dc4b215eb8e77783df379cfc073a2d2f5 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Ryan Mallona3662f62010-01-22 01:42:02 +01002/*
3 * arch/arm/mach-ep93xx/simone.c
4 * Simplemachines Sim.One support.
5 *
Ryan Mallon1c5454e2011-06-15 14:45:36 +10006 * Copyright (C) 2010 Ryan Mallon
Ryan Mallona3662f62010-01-22 01:42:02 +01007 *
8 * Based on the 2.6.24.7 support:
9 * Copyright (C) 2009 Simplemachines
10 * MMC support by Peter Ivanov <ivanovp@gmail.com>, 2007
Ryan Mallona3662f62010-01-22 01:42:02 +010011 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
Ryan Mallona3662f62010-01-22 01:42:02 +010016#include <linux/i2c.h>
Mika Westerbergd50bfa42015-06-08 15:22:39 +020017#include <linux/mmc/host.h>
18#include <linux/spi/spi.h>
19#include <linux/spi/mmc_spi.h>
20#include <linux/platform_data/video-ep93xx.h>
21#include <linux/platform_data/spi-ep93xx.h>
22#include <linux/gpio.h>
Linus Walleij5716fb92018-12-02 09:43:18 +010023#include <linux/gpio/machine.h>
Ryan Mallona3662f62010-01-22 01:42:02 +010024
Arnd Bergmann5b7cc902019-04-15 22:17:12 +020025#include "hardware.h"
26#include "gpio-ep93xx.h"
Ryan Mallona3662f62010-01-22 01:42:02 +010027
28#include <asm/mach-types.h>
29#include <asm/mach/arch.h>
30
Ryan Mallon258249e2012-01-11 09:06:08 +110031#include "soc.h"
32
Hartley Sweetenb370e082010-03-18 18:04:06 +010033static struct ep93xx_eth_data __initdata simone_eth_data = {
Ryan Mallona3662f62010-01-22 01:42:02 +010034 .phy_id = 1,
35};
36
Hartley Sweetenb370e082010-03-18 18:04:06 +010037static struct ep93xxfb_mach_info __initdata simone_fb_info = {
Ryan Mallona3662f62010-01-22 01:42:02 +010038 .flags = EP93XXFB_USE_SDCSN0 | EP93XXFB_PCLK_FALLING,
39};
40
Mika Westerbergd50bfa42015-06-08 15:22:39 +020041static struct mmc_spi_platform_data simone_mmc_spi_data = {
Mika Westerbergd50bfa42015-06-08 15:22:39 +020042 .detect_delay = 500,
43 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
Linus Walleij5716fb92018-12-02 09:43:18 +010044};
45
46static struct gpiod_lookup_table simone_mmc_spi_gpio_table = {
47 .dev_id = "mmc_spi.0", /* "mmc_spi" @ CS0 */
48 .table = {
49 /* Card detect */
50 GPIO_LOOKUP_IDX("A", 0, NULL, 0, GPIO_ACTIVE_LOW),
51 { },
52 },
Mika Westerbergd50bfa42015-06-08 15:22:39 +020053};
54
55static struct spi_board_info simone_spi_devices[] __initdata = {
56 {
57 .modalias = "mmc_spi",
Mika Westerbergd50bfa42015-06-08 15:22:39 +020058 .platform_data = &simone_mmc_spi_data,
59 /*
60 * We use 10 MHz even though the maximum is 3.7 MHz. The driver
61 * will limit it automatically to max. frequency.
62 */
63 .max_speed_hz = 10 * 1000 * 1000,
64 .bus_num = 0,
65 .chip_select = 0,
66 .mode = SPI_MODE_3,
67 },
68};
69
H Hartley Sweeten55f0cd32017-02-16 13:07:37 -070070/*
71 * Up to v1.3, the Sim.One used SFRMOUT as SD card chip select, but this goes
72 * low between multi-message command blocks. From v1.4, it uses a GPIO instead.
73 * v1.3 parts will still work, since the signal on SFRMOUT is automatic.
74 */
Linus Walleij1dfbf332019-04-20 13:05:59 +020075static struct gpiod_lookup_table simone_spi_cs_gpio_table = {
Alexander Sverdlin4fbc4852019-08-31 20:04:02 +020076 .dev_id = "spi0",
Linus Walleij1dfbf332019-04-20 13:05:59 +020077 .table = {
78 GPIO_LOOKUP("A", 1, "cs", GPIO_ACTIVE_LOW),
79 { },
80 },
H Hartley Sweeten55f0cd32017-02-16 13:07:37 -070081};
82
Mika Westerbergd50bfa42015-06-08 15:22:39 +020083static struct ep93xx_spi_info simone_spi_info __initdata = {
Linus Walleij109965a2015-07-09 16:56:40 +020084 .use_dma = 1,
Mika Westerbergd50bfa42015-06-08 15:22:39 +020085};
86
Ryan Mallona3662f62010-01-22 01:42:02 +010087static struct i2c_board_info __initdata simone_i2c_board_info[] = {
88 {
89 I2C_BOARD_INFO("ds1337", 0x68),
90 },
91};
92
Mika Westerberge5063fe2011-09-11 12:28:53 +030093static struct platform_device simone_audio_device = {
94 .name = "simone-audio",
95 .id = -1,
96};
97
98static void __init simone_register_audio(void)
99{
100 ep93xx_register_ac97();
101 platform_device_register(&simone_audio_device);
102}
103
Ryan Mallona3662f62010-01-22 01:42:02 +0100104static void __init simone_init_machine(void)
105{
106 ep93xx_init_devices();
Hartley Sweeten16bcf782010-06-10 16:19:08 +0100107 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_8M);
Ryan Mallona3662f62010-01-22 01:42:02 +0100108 ep93xx_register_eth(&simone_eth_data, 1);
109 ep93xx_register_fb(&simone_fb_info);
Linus Walleijb2e63552017-09-10 01:30:46 +0200110 ep93xx_register_i2c(simone_i2c_board_info,
Ryan Mallona3662f62010-01-22 01:42:02 +0100111 ARRAY_SIZE(simone_i2c_board_info));
Linus Walleij5716fb92018-12-02 09:43:18 +0100112 gpiod_add_lookup_table(&simone_mmc_spi_gpio_table);
Linus Walleij1dfbf332019-04-20 13:05:59 +0200113 gpiod_add_lookup_table(&simone_spi_cs_gpio_table);
Mika Westerbergd50bfa42015-06-08 15:22:39 +0200114 ep93xx_register_spi(&simone_spi_info, simone_spi_devices,
115 ARRAY_SIZE(simone_spi_devices));
Mika Westerberge5063fe2011-09-11 12:28:53 +0300116 simone_register_audio();
Ryan Mallona3662f62010-01-22 01:42:02 +0100117}
118
119MACHINE_START(SIM_ONE, "Simplemachines Sim.One Board")
Nicolas Pitree562cf12011-07-05 22:38:11 -0400120 /* Maintainer: Ryan Mallon */
121 .atag_offset = 0x100,
Ryan Mallona3662f62010-01-22 01:42:02 +0100122 .map_io = ep93xx_map_io,
123 .init_irq = ep93xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700124 .init_time = ep93xx_timer_init,
Ryan Mallona3662f62010-01-22 01:42:02 +0100125 .init_machine = simone_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800126 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000127 .restart = ep93xx_restart,
Ryan Mallona3662f62010-01-22 01:42:02 +0100128MACHINE_END