colibri-evalboard.c 3.3 KB
Newer Older
1
/*
M
Marek Vasut 已提交
2
 *  linux/arch/arm/mach-pxa/colibri-evalboard.c
3
 *
M
Marek Vasut 已提交
4
 *  Support for Toradex Colibri Evaluation Carrier Board
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *  Daniel Mack <daniel@caiaq.de>
 *  Marek Vasut <marek.vasut@gmail.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/sysdev.h>
#include <linux/interrupt.h>
#include <linux/gpio.h>
#include <asm/mach-types.h>
#include <mach/hardware.h>
#include <asm/mach/arch.h>
22
#include <linux/i2c.h>
23 24 25 26 27 28 29

#include <mach/pxa27x.h>
#include <mach/colibri.h>
#include <mach/mmc.h>
#include <mach/ohci.h>
#include <mach/pxa27x-udc.h>

30 31
#include <plat/i2c.h>

32 33 34 35 36 37 38
#include "generic.h"
#include "devices.h"

/******************************************************************************
 * SD/MMC card controller
 ******************************************************************************/
#if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
M
Marek Vasut 已提交
39
static struct pxamci_platform_data colibri_mci_platform_data = {
40 41 42 43 44 45
	.ocr_mask		= MMC_VDD_32_33 | MMC_VDD_33_34,
	.gpio_power		= -1,
	.gpio_card_ro		= -1,
	.detect_delay_ms	= 200,
};

M
Marek Vasut 已提交
46
static void __init colibri_mmc_init(void)
47
{
48
	if (machine_is_colibri())	/* PXA270 Colibri */
M
Marek Vasut 已提交
49
		colibri_mci_platform_data.gpio_card_detect =
50 51
			GPIO0_COLIBRI_PXA270_SD_DETECT;
	if (machine_is_colibri300())	/* PXA300 Colibri */
M
Marek Vasut 已提交
52
		colibri_mci_platform_data.gpio_card_detect =
53
			GPIO13_COLIBRI_PXA300_SD_DETECT;
54
	else				/* PXA320 Colibri */
M
Marek Vasut 已提交
55
		colibri_mci_platform_data.gpio_card_detect =
56 57
			GPIO28_COLIBRI_PXA320_SD_DETECT;

M
Marek Vasut 已提交
58
	pxa_set_mci_info(&colibri_mci_platform_data);
59 60
}
#else
M
Marek Vasut 已提交
61
static inline void colibri_mmc_init(void) {}
62 63 64 65 66 67
#endif

/******************************************************************************
 * USB Host
 ******************************************************************************/
#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
M
Marek Vasut 已提交
68
static int colibri_ohci_init(struct device *dev)
69 70 71 72 73
{
	UP2OCR = UP2OCR_HXS | UP2OCR_HXOE | UP2OCR_DPPDE | UP2OCR_DMPDE;
	return 0;
}

M
Marek Vasut 已提交
74
static struct pxaohci_platform_data colibri_ohci_info = {
75
	.port_mode	= PMM_PERPORT_MODE,
76
	.flags		= ENABLE_PORT1 |
77
			  POWER_CONTROL_LOW | POWER_SENSE_LOW,
M
Marek Vasut 已提交
78
	.init		= colibri_ohci_init,
79 80
};

M
Marek Vasut 已提交
81
static void __init colibri_uhc_init(void)
82
{
83 84
	/* Colibri PXA270 has two usb ports, TBA for 320 */
	if (machine_is_colibri())
M
Marek Vasut 已提交
85
		colibri_ohci_info.flags	|= ENABLE_PORT2;
86

M
Marek Vasut 已提交
87
	pxa_set_ohci_info(&colibri_ohci_info);
88 89
}
#else
M
Marek Vasut 已提交
90
static inline void colibri_uhc_init(void) {}
91 92
#endif

93 94 95 96
/******************************************************************************
 * I2C RTC
 ******************************************************************************/
#if defined(CONFIG_RTC_DRV_DS1307) || defined(CONFIG_RTC_DRV_DS1307_MODULE)
M
Marek Vasut 已提交
97
static struct i2c_board_info __initdata colibri_i2c_devs[] = {
98 99 100 101 102
	{
		I2C_BOARD_INFO("m41t00", 0x68),
	},
};

M
Marek Vasut 已提交
103
static void __init colibri_rtc_init(void)
104 105
{
	pxa_set_i2c_info(NULL);
M
Marek Vasut 已提交
106
	i2c_register_board_info(0, ARRAY_AND_SIZE(colibri_i2c_devs));
107 108
}
#else
M
Marek Vasut 已提交
109
static inline void colibri_rtc_init(void) {}
110 111
#endif

M
Marek Vasut 已提交
112
void __init colibri_evalboard_init(void)
113 114 115 116 117
{
	pxa_set_ffuart_info(NULL);
	pxa_set_btuart_info(NULL);
	pxa_set_stuart_info(NULL);

M
Marek Vasut 已提交
118 119 120
	colibri_mmc_init();
	colibri_uhc_init();
	colibri_rtc_init();
121
}