mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 03:35:42 +07:00
fd534e9b5f
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 51 franklin st fifth floor boston ma 02110 1301 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 50 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190523091649.499889647@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
953 lines
24 KiB
C
953 lines
24 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* DBAu1200/PBAu1200 board platform device registration
|
|
*
|
|
* Copyright (C) 2008-2011 Manuel Lauss
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <linux/gpio.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/leds.h>
|
|
#include <linux/mmc/host.h>
|
|
#include <linux/mtd/mtd.h>
|
|
#include <linux/mtd/platnand.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/serial_8250.h>
|
|
#include <linux/spi/spi.h>
|
|
#include <linux/spi/flash.h>
|
|
#include <linux/smc91x.h>
|
|
#include <linux/ata_platform.h>
|
|
#include <asm/mach-au1x00/au1000.h>
|
|
#include <asm/mach-au1x00/au1100_mmc.h>
|
|
#include <asm/mach-au1x00/au1xxx_dbdma.h>
|
|
#include <asm/mach-au1x00/au1xxx_psc.h>
|
|
#include <asm/mach-au1x00/au1200fb.h>
|
|
#include <asm/mach-au1x00/au1550_spi.h>
|
|
#include <asm/mach-db1x00/bcsr.h>
|
|
|
|
#include "platform.h"
|
|
|
|
#define BCSR_INT_IDE 0x0001
|
|
#define BCSR_INT_ETH 0x0002
|
|
#define BCSR_INT_PC0 0x0004
|
|
#define BCSR_INT_PC0STSCHG 0x0008
|
|
#define BCSR_INT_PC1 0x0010
|
|
#define BCSR_INT_PC1STSCHG 0x0020
|
|
#define BCSR_INT_DC 0x0040
|
|
#define BCSR_INT_FLASHBUSY 0x0080
|
|
#define BCSR_INT_PC0INSERT 0x0100
|
|
#define BCSR_INT_PC0EJECT 0x0200
|
|
#define BCSR_INT_PC1INSERT 0x0400
|
|
#define BCSR_INT_PC1EJECT 0x0800
|
|
#define BCSR_INT_SD0INSERT 0x1000
|
|
#define BCSR_INT_SD0EJECT 0x2000
|
|
#define BCSR_INT_SD1INSERT 0x4000
|
|
#define BCSR_INT_SD1EJECT 0x8000
|
|
|
|
#define DB1200_IDE_PHYS_ADDR 0x18800000
|
|
#define DB1200_IDE_REG_SHIFT 5
|
|
#define DB1200_IDE_PHYS_LEN (16 << DB1200_IDE_REG_SHIFT)
|
|
#define DB1200_ETH_PHYS_ADDR 0x19000300
|
|
#define DB1200_NAND_PHYS_ADDR 0x20000000
|
|
|
|
#define PB1200_IDE_PHYS_ADDR 0x0C800000
|
|
#define PB1200_ETH_PHYS_ADDR 0x0D000300
|
|
#define PB1200_NAND_PHYS_ADDR 0x1C000000
|
|
|
|
#define DB1200_INT_BEGIN (AU1000_MAX_INTR + 1)
|
|
#define DB1200_IDE_INT (DB1200_INT_BEGIN + 0)
|
|
#define DB1200_ETH_INT (DB1200_INT_BEGIN + 1)
|
|
#define DB1200_PC0_INT (DB1200_INT_BEGIN + 2)
|
|
#define DB1200_PC0_STSCHG_INT (DB1200_INT_BEGIN + 3)
|
|
#define DB1200_PC1_INT (DB1200_INT_BEGIN + 4)
|
|
#define DB1200_PC1_STSCHG_INT (DB1200_INT_BEGIN + 5)
|
|
#define DB1200_DC_INT (DB1200_INT_BEGIN + 6)
|
|
#define DB1200_FLASHBUSY_INT (DB1200_INT_BEGIN + 7)
|
|
#define DB1200_PC0_INSERT_INT (DB1200_INT_BEGIN + 8)
|
|
#define DB1200_PC0_EJECT_INT (DB1200_INT_BEGIN + 9)
|
|
#define DB1200_PC1_INSERT_INT (DB1200_INT_BEGIN + 10)
|
|
#define DB1200_PC1_EJECT_INT (DB1200_INT_BEGIN + 11)
|
|
#define DB1200_SD0_INSERT_INT (DB1200_INT_BEGIN + 12)
|
|
#define DB1200_SD0_EJECT_INT (DB1200_INT_BEGIN + 13)
|
|
#define PB1200_SD1_INSERT_INT (DB1200_INT_BEGIN + 14)
|
|
#define PB1200_SD1_EJECT_INT (DB1200_INT_BEGIN + 15)
|
|
#define DB1200_INT_END (DB1200_INT_BEGIN + 15)
|
|
|
|
const char *get_system_type(void);
|
|
|
|
static int __init db1200_detect_board(void)
|
|
{
|
|
int bid;
|
|
|
|
/* try the DB1200 first */
|
|
bcsr_init(DB1200_BCSR_PHYS_ADDR,
|
|
DB1200_BCSR_PHYS_ADDR + DB1200_BCSR_HEXLED_OFS);
|
|
if (BCSR_WHOAMI_DB1200 == BCSR_WHOAMI_BOARD(bcsr_read(BCSR_WHOAMI))) {
|
|
unsigned short t = bcsr_read(BCSR_HEXLEDS);
|
|
bcsr_write(BCSR_HEXLEDS, ~t);
|
|
if (bcsr_read(BCSR_HEXLEDS) != t) {
|
|
bcsr_write(BCSR_HEXLEDS, t);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/* okay, try the PB1200 then */
|
|
bcsr_init(PB1200_BCSR_PHYS_ADDR,
|
|
PB1200_BCSR_PHYS_ADDR + PB1200_BCSR_HEXLED_OFS);
|
|
bid = BCSR_WHOAMI_BOARD(bcsr_read(BCSR_WHOAMI));
|
|
if ((bid == BCSR_WHOAMI_PB1200_DDR1) ||
|
|
(bid == BCSR_WHOAMI_PB1200_DDR2)) {
|
|
unsigned short t = bcsr_read(BCSR_HEXLEDS);
|
|
bcsr_write(BCSR_HEXLEDS, ~t);
|
|
if (bcsr_read(BCSR_HEXLEDS) != t) {
|
|
bcsr_write(BCSR_HEXLEDS, t);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return 1; /* it's neither */
|
|
}
|
|
|
|
int __init db1200_board_setup(void)
|
|
{
|
|
unsigned short whoami;
|
|
|
|
if (db1200_detect_board())
|
|
return -ENODEV;
|
|
|
|
whoami = bcsr_read(BCSR_WHOAMI);
|
|
switch (BCSR_WHOAMI_BOARD(whoami)) {
|
|
case BCSR_WHOAMI_PB1200_DDR1:
|
|
case BCSR_WHOAMI_PB1200_DDR2:
|
|
case BCSR_WHOAMI_DB1200:
|
|
break;
|
|
default:
|
|
return -ENODEV;
|
|
}
|
|
|
|
printk(KERN_INFO "Alchemy/AMD/RMI %s Board, CPLD Rev %d"
|
|
" Board-ID %d Daughtercard ID %d\n", get_system_type(),
|
|
(whoami >> 4) & 0xf, (whoami >> 8) & 0xf, whoami & 0xf);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
static u64 au1200_all_dmamask = DMA_BIT_MASK(32);
|
|
|
|
static struct mtd_partition db1200_spiflash_parts[] = {
|
|
{
|
|
.name = "spi_flash",
|
|
.offset = 0,
|
|
.size = MTDPART_SIZ_FULL,
|
|
},
|
|
};
|
|
|
|
static struct flash_platform_data db1200_spiflash_data = {
|
|
.name = "s25fl001",
|
|
.parts = db1200_spiflash_parts,
|
|
.nr_parts = ARRAY_SIZE(db1200_spiflash_parts),
|
|
.type = "m25p10",
|
|
};
|
|
|
|
static struct spi_board_info db1200_spi_devs[] __initdata = {
|
|
{
|
|
/* TI TMP121AIDBVR temp sensor */
|
|
.modalias = "tmp121",
|
|
.max_speed_hz = 2000000,
|
|
.bus_num = 0,
|
|
.chip_select = 0,
|
|
.mode = 0,
|
|
},
|
|
{
|
|
/* Spansion S25FL001D0FMA SPI flash */
|
|
.modalias = "m25p80",
|
|
.max_speed_hz = 50000000,
|
|
.bus_num = 0,
|
|
.chip_select = 1,
|
|
.mode = 0,
|
|
.platform_data = &db1200_spiflash_data,
|
|
},
|
|
};
|
|
|
|
static struct i2c_board_info db1200_i2c_devs[] __initdata = {
|
|
{ I2C_BOARD_INFO("24c04", 0x52), }, /* AT24C04-10 I2C eeprom */
|
|
{ I2C_BOARD_INFO("ne1619", 0x2d), }, /* adm1025-compat hwmon */
|
|
{ I2C_BOARD_INFO("wm8731", 0x1b), }, /* I2S audio codec WM8731 */
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
static void au1200_nand_cmd_ctrl(struct nand_chip *this, int cmd,
|
|
unsigned int ctrl)
|
|
{
|
|
unsigned long ioaddr = (unsigned long)this->legacy.IO_ADDR_W;
|
|
|
|
ioaddr &= 0xffffff00;
|
|
|
|
if (ctrl & NAND_CLE) {
|
|
ioaddr += MEM_STNAND_CMD;
|
|
} else if (ctrl & NAND_ALE) {
|
|
ioaddr += MEM_STNAND_ADDR;
|
|
} else {
|
|
/* assume we want to r/w real data by default */
|
|
ioaddr += MEM_STNAND_DATA;
|
|
}
|
|
this->legacy.IO_ADDR_R = this->legacy.IO_ADDR_W = (void __iomem *)ioaddr;
|
|
if (cmd != NAND_CMD_NONE) {
|
|
__raw_writeb(cmd, this->legacy.IO_ADDR_W);
|
|
wmb();
|
|
}
|
|
}
|
|
|
|
static int au1200_nand_device_ready(struct nand_chip *this)
|
|
{
|
|
return alchemy_rdsmem(AU1000_MEM_STSTAT) & 1;
|
|
}
|
|
|
|
static struct mtd_partition db1200_nand_parts[] = {
|
|
{
|
|
.name = "NAND FS 0",
|
|
.offset = 0,
|
|
.size = 8 * 1024 * 1024,
|
|
},
|
|
{
|
|
.name = "NAND FS 1",
|
|
.offset = MTDPART_OFS_APPEND,
|
|
.size = MTDPART_SIZ_FULL
|
|
},
|
|
};
|
|
|
|
struct platform_nand_data db1200_nand_platdata = {
|
|
.chip = {
|
|
.nr_chips = 1,
|
|
.chip_offset = 0,
|
|
.nr_partitions = ARRAY_SIZE(db1200_nand_parts),
|
|
.partitions = db1200_nand_parts,
|
|
.chip_delay = 20,
|
|
},
|
|
.ctrl = {
|
|
.dev_ready = au1200_nand_device_ready,
|
|
.cmd_ctrl = au1200_nand_cmd_ctrl,
|
|
},
|
|
};
|
|
|
|
static struct resource db1200_nand_res[] = {
|
|
[0] = {
|
|
.start = DB1200_NAND_PHYS_ADDR,
|
|
.end = DB1200_NAND_PHYS_ADDR + 0xff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
};
|
|
|
|
static struct platform_device db1200_nand_dev = {
|
|
.name = "gen_nand",
|
|
.num_resources = ARRAY_SIZE(db1200_nand_res),
|
|
.resource = db1200_nand_res,
|
|
.id = -1,
|
|
.dev = {
|
|
.platform_data = &db1200_nand_platdata,
|
|
}
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
static struct smc91x_platdata db1200_eth_data = {
|
|
.flags = SMC91X_NOWAIT | SMC91X_USE_16BIT,
|
|
.leda = RPC_LED_100_10,
|
|
.ledb = RPC_LED_TX_RX,
|
|
};
|
|
|
|
static struct resource db1200_eth_res[] = {
|
|
[0] = {
|
|
.start = DB1200_ETH_PHYS_ADDR,
|
|
.end = DB1200_ETH_PHYS_ADDR + 0xf,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = DB1200_ETH_INT,
|
|
.end = DB1200_ETH_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
};
|
|
|
|
static struct platform_device db1200_eth_dev = {
|
|
.dev = {
|
|
.platform_data = &db1200_eth_data,
|
|
},
|
|
.name = "smc91x",
|
|
.id = -1,
|
|
.num_resources = ARRAY_SIZE(db1200_eth_res),
|
|
.resource = db1200_eth_res,
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
static struct pata_platform_info db1200_ide_info = {
|
|
.ioport_shift = DB1200_IDE_REG_SHIFT,
|
|
};
|
|
|
|
#define IDE_ALT_START (14 << DB1200_IDE_REG_SHIFT)
|
|
static struct resource db1200_ide_res[] = {
|
|
[0] = {
|
|
.start = DB1200_IDE_PHYS_ADDR,
|
|
.end = DB1200_IDE_PHYS_ADDR + IDE_ALT_START - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = DB1200_IDE_PHYS_ADDR + IDE_ALT_START,
|
|
.end = DB1200_IDE_PHYS_ADDR + DB1200_IDE_PHYS_LEN - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[2] = {
|
|
.start = DB1200_IDE_INT,
|
|
.end = DB1200_IDE_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
};
|
|
|
|
static struct platform_device db1200_ide_dev = {
|
|
.name = "pata_platform",
|
|
.id = 0,
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
.platform_data = &db1200_ide_info,
|
|
},
|
|
.num_resources = ARRAY_SIZE(db1200_ide_res),
|
|
.resource = db1200_ide_res,
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
/* SD carddetects: they're supposed to be edge-triggered, but ack
|
|
* doesn't seem to work (CPLD Rev 2). Instead, the screaming one
|
|
* is disabled and its counterpart enabled. The 200ms timeout is
|
|
* because the carddetect usually triggers twice, after debounce.
|
|
*/
|
|
static irqreturn_t db1200_mmc_cd(int irq, void *ptr)
|
|
{
|
|
disable_irq_nosync(irq);
|
|
return IRQ_WAKE_THREAD;
|
|
}
|
|
|
|
static irqreturn_t db1200_mmc_cdfn(int irq, void *ptr)
|
|
{
|
|
void (*mmc_cd)(struct mmc_host *, unsigned long);
|
|
|
|
/* link against CONFIG_MMC=m */
|
|
mmc_cd = symbol_get(mmc_detect_change);
|
|
if (mmc_cd) {
|
|
mmc_cd(ptr, msecs_to_jiffies(200));
|
|
symbol_put(mmc_detect_change);
|
|
}
|
|
|
|
msleep(100); /* debounce */
|
|
if (irq == DB1200_SD0_INSERT_INT)
|
|
enable_irq(DB1200_SD0_EJECT_INT);
|
|
else
|
|
enable_irq(DB1200_SD0_INSERT_INT);
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int db1200_mmc_cd_setup(void *mmc_host, int en)
|
|
{
|
|
int ret;
|
|
|
|
if (en) {
|
|
ret = request_threaded_irq(DB1200_SD0_INSERT_INT, db1200_mmc_cd,
|
|
db1200_mmc_cdfn, 0, "sd_insert", mmc_host);
|
|
if (ret)
|
|
goto out;
|
|
|
|
ret = request_threaded_irq(DB1200_SD0_EJECT_INT, db1200_mmc_cd,
|
|
db1200_mmc_cdfn, 0, "sd_eject", mmc_host);
|
|
if (ret) {
|
|
free_irq(DB1200_SD0_INSERT_INT, mmc_host);
|
|
goto out;
|
|
}
|
|
|
|
if (bcsr_read(BCSR_SIGSTAT) & BCSR_INT_SD0INSERT)
|
|
enable_irq(DB1200_SD0_EJECT_INT);
|
|
else
|
|
enable_irq(DB1200_SD0_INSERT_INT);
|
|
|
|
} else {
|
|
free_irq(DB1200_SD0_INSERT_INT, mmc_host);
|
|
free_irq(DB1200_SD0_EJECT_INT, mmc_host);
|
|
}
|
|
ret = 0;
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
static void db1200_mmc_set_power(void *mmc_host, int state)
|
|
{
|
|
if (state) {
|
|
bcsr_mod(BCSR_BOARD, 0, BCSR_BOARD_SD0PWR);
|
|
msleep(400); /* stabilization time */
|
|
} else
|
|
bcsr_mod(BCSR_BOARD, BCSR_BOARD_SD0PWR, 0);
|
|
}
|
|
|
|
static int db1200_mmc_card_readonly(void *mmc_host)
|
|
{
|
|
return (bcsr_read(BCSR_STATUS) & BCSR_STATUS_SD0WP) ? 1 : 0;
|
|
}
|
|
|
|
static int db1200_mmc_card_inserted(void *mmc_host)
|
|
{
|
|
return (bcsr_read(BCSR_SIGSTAT) & BCSR_INT_SD0INSERT) ? 1 : 0;
|
|
}
|
|
|
|
static void db1200_mmcled_set(struct led_classdev *led,
|
|
enum led_brightness brightness)
|
|
{
|
|
if (brightness != LED_OFF)
|
|
bcsr_mod(BCSR_LEDS, BCSR_LEDS_LED0, 0);
|
|
else
|
|
bcsr_mod(BCSR_LEDS, 0, BCSR_LEDS_LED0);
|
|
}
|
|
|
|
static struct led_classdev db1200_mmc_led = {
|
|
.brightness_set = db1200_mmcled_set,
|
|
};
|
|
|
|
/* -- */
|
|
|
|
static irqreturn_t pb1200_mmc1_cd(int irq, void *ptr)
|
|
{
|
|
disable_irq_nosync(irq);
|
|
return IRQ_WAKE_THREAD;
|
|
}
|
|
|
|
static irqreturn_t pb1200_mmc1_cdfn(int irq, void *ptr)
|
|
{
|
|
void (*mmc_cd)(struct mmc_host *, unsigned long);
|
|
|
|
/* link against CONFIG_MMC=m */
|
|
mmc_cd = symbol_get(mmc_detect_change);
|
|
if (mmc_cd) {
|
|
mmc_cd(ptr, msecs_to_jiffies(200));
|
|
symbol_put(mmc_detect_change);
|
|
}
|
|
|
|
msleep(100); /* debounce */
|
|
if (irq == PB1200_SD1_INSERT_INT)
|
|
enable_irq(PB1200_SD1_EJECT_INT);
|
|
else
|
|
enable_irq(PB1200_SD1_INSERT_INT);
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int pb1200_mmc1_cd_setup(void *mmc_host, int en)
|
|
{
|
|
int ret;
|
|
|
|
if (en) {
|
|
ret = request_threaded_irq(PB1200_SD1_INSERT_INT, pb1200_mmc1_cd,
|
|
pb1200_mmc1_cdfn, 0, "sd1_insert", mmc_host);
|
|
if (ret)
|
|
goto out;
|
|
|
|
ret = request_threaded_irq(PB1200_SD1_EJECT_INT, pb1200_mmc1_cd,
|
|
pb1200_mmc1_cdfn, 0, "sd1_eject", mmc_host);
|
|
if (ret) {
|
|
free_irq(PB1200_SD1_INSERT_INT, mmc_host);
|
|
goto out;
|
|
}
|
|
|
|
if (bcsr_read(BCSR_SIGSTAT) & BCSR_INT_SD1INSERT)
|
|
enable_irq(PB1200_SD1_EJECT_INT);
|
|
else
|
|
enable_irq(PB1200_SD1_INSERT_INT);
|
|
|
|
} else {
|
|
free_irq(PB1200_SD1_INSERT_INT, mmc_host);
|
|
free_irq(PB1200_SD1_EJECT_INT, mmc_host);
|
|
}
|
|
ret = 0;
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
static void pb1200_mmc1led_set(struct led_classdev *led,
|
|
enum led_brightness brightness)
|
|
{
|
|
if (brightness != LED_OFF)
|
|
bcsr_mod(BCSR_LEDS, BCSR_LEDS_LED1, 0);
|
|
else
|
|
bcsr_mod(BCSR_LEDS, 0, BCSR_LEDS_LED1);
|
|
}
|
|
|
|
static struct led_classdev pb1200_mmc1_led = {
|
|
.brightness_set = pb1200_mmc1led_set,
|
|
};
|
|
|
|
static void pb1200_mmc1_set_power(void *mmc_host, int state)
|
|
{
|
|
if (state) {
|
|
bcsr_mod(BCSR_BOARD, 0, BCSR_BOARD_SD1PWR);
|
|
msleep(400); /* stabilization time */
|
|
} else
|
|
bcsr_mod(BCSR_BOARD, BCSR_BOARD_SD1PWR, 0);
|
|
}
|
|
|
|
static int pb1200_mmc1_card_readonly(void *mmc_host)
|
|
{
|
|
return (bcsr_read(BCSR_STATUS) & BCSR_STATUS_SD1WP) ? 1 : 0;
|
|
}
|
|
|
|
static int pb1200_mmc1_card_inserted(void *mmc_host)
|
|
{
|
|
return (bcsr_read(BCSR_SIGSTAT) & BCSR_INT_SD1INSERT) ? 1 : 0;
|
|
}
|
|
|
|
|
|
static struct au1xmmc_platform_data db1200_mmc_platdata[2] = {
|
|
[0] = {
|
|
.cd_setup = db1200_mmc_cd_setup,
|
|
.set_power = db1200_mmc_set_power,
|
|
.card_inserted = db1200_mmc_card_inserted,
|
|
.card_readonly = db1200_mmc_card_readonly,
|
|
.led = &db1200_mmc_led,
|
|
},
|
|
[1] = {
|
|
.cd_setup = pb1200_mmc1_cd_setup,
|
|
.set_power = pb1200_mmc1_set_power,
|
|
.card_inserted = pb1200_mmc1_card_inserted,
|
|
.card_readonly = pb1200_mmc1_card_readonly,
|
|
.led = &pb1200_mmc1_led,
|
|
},
|
|
};
|
|
|
|
static struct resource au1200_mmc0_resources[] = {
|
|
[0] = {
|
|
.start = AU1100_SD0_PHYS_ADDR,
|
|
.end = AU1100_SD0_PHYS_ADDR + 0xfff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = AU1200_SD_INT,
|
|
.end = AU1200_SD_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
[2] = {
|
|
.start = AU1200_DSCR_CMD0_SDMS_TX0,
|
|
.end = AU1200_DSCR_CMD0_SDMS_TX0,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
[3] = {
|
|
.start = AU1200_DSCR_CMD0_SDMS_RX0,
|
|
.end = AU1200_DSCR_CMD0_SDMS_RX0,
|
|
.flags = IORESOURCE_DMA,
|
|
}
|
|
};
|
|
|
|
static struct platform_device db1200_mmc0_dev = {
|
|
.name = "au1xxx-mmc",
|
|
.id = 0,
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
.platform_data = &db1200_mmc_platdata[0],
|
|
},
|
|
.num_resources = ARRAY_SIZE(au1200_mmc0_resources),
|
|
.resource = au1200_mmc0_resources,
|
|
};
|
|
|
|
static struct resource au1200_mmc1_res[] = {
|
|
[0] = {
|
|
.start = AU1100_SD1_PHYS_ADDR,
|
|
.end = AU1100_SD1_PHYS_ADDR + 0xfff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = AU1200_SD_INT,
|
|
.end = AU1200_SD_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
[2] = {
|
|
.start = AU1200_DSCR_CMD0_SDMS_TX1,
|
|
.end = AU1200_DSCR_CMD0_SDMS_TX1,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
[3] = {
|
|
.start = AU1200_DSCR_CMD0_SDMS_RX1,
|
|
.end = AU1200_DSCR_CMD0_SDMS_RX1,
|
|
.flags = IORESOURCE_DMA,
|
|
}
|
|
};
|
|
|
|
static struct platform_device pb1200_mmc1_dev = {
|
|
.name = "au1xxx-mmc",
|
|
.id = 1,
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
.platform_data = &db1200_mmc_platdata[1],
|
|
},
|
|
.num_resources = ARRAY_SIZE(au1200_mmc1_res),
|
|
.resource = au1200_mmc1_res,
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
static int db1200fb_panel_index(void)
|
|
{
|
|
return (bcsr_read(BCSR_SWITCHES) >> 8) & 0x0f;
|
|
}
|
|
|
|
static int db1200fb_panel_init(void)
|
|
{
|
|
/* Apply power */
|
|
bcsr_mod(BCSR_BOARD, 0, BCSR_BOARD_LCDVEE | BCSR_BOARD_LCDVDD |
|
|
BCSR_BOARD_LCDBL);
|
|
return 0;
|
|
}
|
|
|
|
static int db1200fb_panel_shutdown(void)
|
|
{
|
|
/* Remove power */
|
|
bcsr_mod(BCSR_BOARD, BCSR_BOARD_LCDVEE | BCSR_BOARD_LCDVDD |
|
|
BCSR_BOARD_LCDBL, 0);
|
|
return 0;
|
|
}
|
|
|
|
static struct au1200fb_platdata db1200fb_pd = {
|
|
.panel_index = db1200fb_panel_index,
|
|
.panel_init = db1200fb_panel_init,
|
|
.panel_shutdown = db1200fb_panel_shutdown,
|
|
};
|
|
|
|
static struct resource au1200_lcd_res[] = {
|
|
[0] = {
|
|
.start = AU1200_LCD_PHYS_ADDR,
|
|
.end = AU1200_LCD_PHYS_ADDR + 0x800 - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = AU1200_LCD_INT,
|
|
.end = AU1200_LCD_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
}
|
|
};
|
|
|
|
static struct platform_device au1200_lcd_dev = {
|
|
.name = "au1200-lcd",
|
|
.id = 0,
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
.platform_data = &db1200fb_pd,
|
|
},
|
|
.num_resources = ARRAY_SIZE(au1200_lcd_res),
|
|
.resource = au1200_lcd_res,
|
|
};
|
|
|
|
/**********************************************************************/
|
|
|
|
static struct resource au1200_psc0_res[] = {
|
|
[0] = {
|
|
.start = AU1550_PSC0_PHYS_ADDR,
|
|
.end = AU1550_PSC0_PHYS_ADDR + 0xfff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = AU1200_PSC0_INT,
|
|
.end = AU1200_PSC0_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
[2] = {
|
|
.start = AU1200_DSCR_CMD0_PSC0_TX,
|
|
.end = AU1200_DSCR_CMD0_PSC0_TX,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
[3] = {
|
|
.start = AU1200_DSCR_CMD0_PSC0_RX,
|
|
.end = AU1200_DSCR_CMD0_PSC0_RX,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
};
|
|
|
|
static struct platform_device db1200_i2c_dev = {
|
|
.name = "au1xpsc_smbus",
|
|
.id = 0, /* bus number */
|
|
.num_resources = ARRAY_SIZE(au1200_psc0_res),
|
|
.resource = au1200_psc0_res,
|
|
};
|
|
|
|
static void db1200_spi_cs_en(struct au1550_spi_info *spi, int cs, int pol)
|
|
{
|
|
if (cs)
|
|
bcsr_mod(BCSR_RESETS, 0, BCSR_RESETS_SPISEL);
|
|
else
|
|
bcsr_mod(BCSR_RESETS, BCSR_RESETS_SPISEL, 0);
|
|
}
|
|
|
|
static struct au1550_spi_info db1200_spi_platdata = {
|
|
.mainclk_hz = 50000000, /* PSC0 clock */
|
|
.num_chipselect = 2,
|
|
.activate_cs = db1200_spi_cs_en,
|
|
};
|
|
|
|
static struct platform_device db1200_spi_dev = {
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
.platform_data = &db1200_spi_platdata,
|
|
},
|
|
.name = "au1550-spi",
|
|
.id = 0, /* bus number */
|
|
.num_resources = ARRAY_SIZE(au1200_psc0_res),
|
|
.resource = au1200_psc0_res,
|
|
};
|
|
|
|
static struct resource au1200_psc1_res[] = {
|
|
[0] = {
|
|
.start = AU1550_PSC1_PHYS_ADDR,
|
|
.end = AU1550_PSC1_PHYS_ADDR + 0xfff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = AU1200_PSC1_INT,
|
|
.end = AU1200_PSC1_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
[2] = {
|
|
.start = AU1200_DSCR_CMD0_PSC1_TX,
|
|
.end = AU1200_DSCR_CMD0_PSC1_TX,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
[3] = {
|
|
.start = AU1200_DSCR_CMD0_PSC1_RX,
|
|
.end = AU1200_DSCR_CMD0_PSC1_RX,
|
|
.flags = IORESOURCE_DMA,
|
|
},
|
|
};
|
|
|
|
/* AC97 or I2S device */
|
|
static struct platform_device db1200_audio_dev = {
|
|
/* name assigned later based on switch setting */
|
|
.id = 1, /* PSC ID */
|
|
.num_resources = ARRAY_SIZE(au1200_psc1_res),
|
|
.resource = au1200_psc1_res,
|
|
};
|
|
|
|
/* DB1200 ASoC card device */
|
|
static struct platform_device db1200_sound_dev = {
|
|
/* name assigned later based on switch setting */
|
|
.id = 1, /* PSC ID */
|
|
.dev = {
|
|
.dma_mask = &au1200_all_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
},
|
|
};
|
|
|
|
static struct platform_device db1200_stac_dev = {
|
|
.name = "ac97-codec",
|
|
.id = 1, /* on PSC1 */
|
|
};
|
|
|
|
static struct platform_device db1200_audiodma_dev = {
|
|
.name = "au1xpsc-pcm",
|
|
.id = 1, /* PSC ID */
|
|
};
|
|
|
|
static struct platform_device *db1200_devs[] __initdata = {
|
|
NULL, /* PSC0, selected by S6.8 */
|
|
&db1200_ide_dev,
|
|
&db1200_mmc0_dev,
|
|
&au1200_lcd_dev,
|
|
&db1200_eth_dev,
|
|
&db1200_nand_dev,
|
|
&db1200_audiodma_dev,
|
|
&db1200_audio_dev,
|
|
&db1200_stac_dev,
|
|
&db1200_sound_dev,
|
|
};
|
|
|
|
static struct platform_device *pb1200_devs[] __initdata = {
|
|
&pb1200_mmc1_dev,
|
|
};
|
|
|
|
/* Some peripheral base addresses differ on the PB1200 */
|
|
static int __init pb1200_res_fixup(void)
|
|
{
|
|
/* CPLD Revs earlier than 4 cause problems */
|
|
if (BCSR_WHOAMI_CPLD(bcsr_read(BCSR_WHOAMI)) <= 3) {
|
|
printk(KERN_ERR "WARNING!!!\n");
|
|
printk(KERN_ERR "WARNING!!!\n");
|
|
printk(KERN_ERR "PB1200 must be at CPLD rev 4. Please have\n");
|
|
printk(KERN_ERR "the board updated to latest revisions.\n");
|
|
printk(KERN_ERR "This software will not work reliably\n");
|
|
printk(KERN_ERR "on anything older than CPLD rev 4.!\n");
|
|
printk(KERN_ERR "WARNING!!!\n");
|
|
printk(KERN_ERR "WARNING!!!\n");
|
|
return 1;
|
|
}
|
|
|
|
db1200_nand_res[0].start = PB1200_NAND_PHYS_ADDR;
|
|
db1200_nand_res[0].end = PB1200_NAND_PHYS_ADDR + 0xff;
|
|
db1200_ide_res[0].start = PB1200_IDE_PHYS_ADDR;
|
|
db1200_ide_res[0].end = PB1200_IDE_PHYS_ADDR + DB1200_IDE_PHYS_LEN - 1;
|
|
db1200_eth_res[0].start = PB1200_ETH_PHYS_ADDR;
|
|
db1200_eth_res[0].end = PB1200_ETH_PHYS_ADDR + 0xff;
|
|
return 0;
|
|
}
|
|
|
|
int __init db1200_dev_setup(void)
|
|
{
|
|
unsigned long pfc;
|
|
unsigned short sw;
|
|
int swapped, bid;
|
|
struct clk *c;
|
|
|
|
bid = BCSR_WHOAMI_BOARD(bcsr_read(BCSR_WHOAMI));
|
|
if ((bid == BCSR_WHOAMI_PB1200_DDR1) ||
|
|
(bid == BCSR_WHOAMI_PB1200_DDR2)) {
|
|
if (pb1200_res_fixup())
|
|
return -ENODEV;
|
|
}
|
|
|
|
/* GPIO7 is low-level triggered CPLD cascade */
|
|
irq_set_irq_type(AU1200_GPIO7_INT, IRQ_TYPE_LEVEL_LOW);
|
|
bcsr_init_irq(DB1200_INT_BEGIN, DB1200_INT_END, AU1200_GPIO7_INT);
|
|
|
|
/* SMBus/SPI on PSC0, Audio on PSC1 */
|
|
pfc = alchemy_rdsys(AU1000_SYS_PINFUNC);
|
|
pfc &= ~(SYS_PINFUNC_P0A | SYS_PINFUNC_P0B);
|
|
pfc &= ~(SYS_PINFUNC_P1A | SYS_PINFUNC_P1B | SYS_PINFUNC_FS3);
|
|
pfc |= SYS_PINFUNC_P1C; /* SPI is configured later */
|
|
alchemy_wrsys(pfc, AU1000_SYS_PINFUNC);
|
|
|
|
/* get 50MHz for I2C driver on PSC0 */
|
|
c = clk_get(NULL, "psc0_intclk");
|
|
if (!IS_ERR(c)) {
|
|
pfc = clk_round_rate(c, 50000000);
|
|
if ((pfc < 1) || (abs(50000000 - pfc) > 2500000))
|
|
pr_warn("DB1200: cant get I2C close to 50MHz\n");
|
|
else
|
|
clk_set_rate(c, pfc);
|
|
clk_prepare_enable(c);
|
|
clk_put(c);
|
|
}
|
|
|
|
/* insert/eject pairs: one of both is always screaming. To avoid
|
|
* issues they must not be automatically enabled when initially
|
|
* requested.
|
|
*/
|
|
irq_set_status_flags(DB1200_SD0_INSERT_INT, IRQ_NOAUTOEN);
|
|
irq_set_status_flags(DB1200_SD0_EJECT_INT, IRQ_NOAUTOEN);
|
|
irq_set_status_flags(DB1200_PC0_INSERT_INT, IRQ_NOAUTOEN);
|
|
irq_set_status_flags(DB1200_PC0_EJECT_INT, IRQ_NOAUTOEN);
|
|
irq_set_status_flags(DB1200_PC1_INSERT_INT, IRQ_NOAUTOEN);
|
|
irq_set_status_flags(DB1200_PC1_EJECT_INT, IRQ_NOAUTOEN);
|
|
|
|
i2c_register_board_info(0, db1200_i2c_devs,
|
|
ARRAY_SIZE(db1200_i2c_devs));
|
|
spi_register_board_info(db1200_spi_devs,
|
|
ARRAY_SIZE(db1200_i2c_devs));
|
|
|
|
/* SWITCHES: S6.8 I2C/SPI selector (OFF=I2C ON=SPI)
|
|
* S6.7 AC97/I2S selector (OFF=AC97 ON=I2S)
|
|
* or S12 on the PB1200.
|
|
*/
|
|
|
|
/* NOTE: GPIO215 controls OTG VBUS supply. In SPI mode however
|
|
* this pin is claimed by PSC0 (unused though, but pinmux doesn't
|
|
* allow to free it without crippling the SPI interface).
|
|
* As a result, in SPI mode, OTG simply won't work (PSC0 uses
|
|
* it as an input pin which is pulled high on the boards).
|
|
*/
|
|
pfc = alchemy_rdsys(AU1000_SYS_PINFUNC) & ~SYS_PINFUNC_P0A;
|
|
|
|
/* switch off OTG VBUS supply */
|
|
gpio_request(215, "otg-vbus");
|
|
gpio_direction_output(215, 1);
|
|
|
|
printk(KERN_INFO "%s device configuration:\n", get_system_type());
|
|
|
|
sw = bcsr_read(BCSR_SWITCHES);
|
|
if (sw & BCSR_SWITCHES_DIP_8) {
|
|
db1200_devs[0] = &db1200_i2c_dev;
|
|
bcsr_mod(BCSR_RESETS, BCSR_RESETS_PSC0MUX, 0);
|
|
|
|
pfc |= (2 << 17); /* GPIO2 block owns GPIO215 */
|
|
|
|
printk(KERN_INFO " S6.8 OFF: PSC0 mode I2C\n");
|
|
printk(KERN_INFO " OTG port VBUS supply available!\n");
|
|
} else {
|
|
db1200_devs[0] = &db1200_spi_dev;
|
|
bcsr_mod(BCSR_RESETS, 0, BCSR_RESETS_PSC0MUX);
|
|
|
|
pfc |= (1 << 17); /* PSC0 owns GPIO215 */
|
|
|
|
printk(KERN_INFO " S6.8 ON : PSC0 mode SPI\n");
|
|
printk(KERN_INFO " OTG port VBUS supply disabled\n");
|
|
}
|
|
alchemy_wrsys(pfc, AU1000_SYS_PINFUNC);
|
|
|
|
/* Audio: DIP7 selects I2S(0)/AC97(1), but need I2C for I2S!
|
|
* so: DIP7=1 || DIP8=0 => AC97, DIP7=0 && DIP8=1 => I2S
|
|
*/
|
|
sw &= BCSR_SWITCHES_DIP_8 | BCSR_SWITCHES_DIP_7;
|
|
if (sw == BCSR_SWITCHES_DIP_8) {
|
|
bcsr_mod(BCSR_RESETS, 0, BCSR_RESETS_PSC1MUX);
|
|
db1200_audio_dev.name = "au1xpsc_i2s";
|
|
db1200_sound_dev.name = "db1200-i2s";
|
|
printk(KERN_INFO " S6.7 ON : PSC1 mode I2S\n");
|
|
} else {
|
|
bcsr_mod(BCSR_RESETS, BCSR_RESETS_PSC1MUX, 0);
|
|
db1200_audio_dev.name = "au1xpsc_ac97";
|
|
db1200_sound_dev.name = "db1200-ac97";
|
|
printk(KERN_INFO " S6.7 OFF: PSC1 mode AC97\n");
|
|
}
|
|
|
|
/* Audio PSC clock is supplied externally. (FIXME: platdata!!) */
|
|
__raw_writel(PSC_SEL_CLK_SERCLK,
|
|
(void __iomem *)KSEG1ADDR(AU1550_PSC1_PHYS_ADDR) + PSC_SEL_OFFSET);
|
|
wmb();
|
|
|
|
db1x_register_pcmcia_socket(
|
|
AU1000_PCMCIA_ATTR_PHYS_ADDR,
|
|
AU1000_PCMCIA_ATTR_PHYS_ADDR + 0x000400000 - 1,
|
|
AU1000_PCMCIA_MEM_PHYS_ADDR,
|
|
AU1000_PCMCIA_MEM_PHYS_ADDR + 0x000400000 - 1,
|
|
AU1000_PCMCIA_IO_PHYS_ADDR,
|
|
AU1000_PCMCIA_IO_PHYS_ADDR + 0x000010000 - 1,
|
|
DB1200_PC0_INT, DB1200_PC0_INSERT_INT,
|
|
/*DB1200_PC0_STSCHG_INT*/0, DB1200_PC0_EJECT_INT, 0);
|
|
|
|
db1x_register_pcmcia_socket(
|
|
AU1000_PCMCIA_ATTR_PHYS_ADDR + 0x004000000,
|
|
AU1000_PCMCIA_ATTR_PHYS_ADDR + 0x004400000 - 1,
|
|
AU1000_PCMCIA_MEM_PHYS_ADDR + 0x004000000,
|
|
AU1000_PCMCIA_MEM_PHYS_ADDR + 0x004400000 - 1,
|
|
AU1000_PCMCIA_IO_PHYS_ADDR + 0x004000000,
|
|
AU1000_PCMCIA_IO_PHYS_ADDR + 0x004010000 - 1,
|
|
DB1200_PC1_INT, DB1200_PC1_INSERT_INT,
|
|
/*DB1200_PC1_STSCHG_INT*/0, DB1200_PC1_EJECT_INT, 1);
|
|
|
|
swapped = bcsr_read(BCSR_STATUS) & BCSR_STATUS_DB1200_SWAPBOOT;
|
|
db1x_register_norflash(64 << 20, 2, swapped);
|
|
|
|
platform_add_devices(db1200_devs, ARRAY_SIZE(db1200_devs));
|
|
|
|
/* PB1200 is a DB1200 with a 2nd MMC and Camera connector */
|
|
if ((bid == BCSR_WHOAMI_PB1200_DDR1) ||
|
|
(bid == BCSR_WHOAMI_PB1200_DDR2))
|
|
platform_add_devices(pb1200_devs, ARRAY_SIZE(pb1200_devs));
|
|
|
|
return 0;
|
|
}
|