Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/arm/mach-omap2/board-am3517crane.c
10817 views
1
/*
2
* Support for AM3517/05 Craneboard
3
* http://www.mistralsolutions.com/products/craneboard.php
4
*
5
* Copyright (C) 2010 Mistral Solutions Pvt Ltd. <www.mistralsolutions.com>
6
* Author: R.Srinath <[email protected]>
7
*
8
* Based on mach-omap2/board-am3517evm.c
9
*
10
* This program is free software; you can redistribute it and/or modify it
11
* under the terms of the GNU General Public License as published by the
12
* Free Software Foundation version 2.
13
*
14
* This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
15
* whether express or implied; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
* General Public License for more details.
18
*/
19
20
#include <linux/kernel.h>
21
#include <linux/init.h>
22
#include <linux/gpio.h>
23
24
#include <mach/hardware.h>
25
#include <asm/mach-types.h>
26
#include <asm/mach/arch.h>
27
#include <asm/mach/map.h>
28
29
#include <plat/board.h>
30
#include <plat/common.h>
31
#include <plat/usb.h>
32
33
#include "mux.h"
34
#include "control.h"
35
36
#define GPIO_USB_POWER 35
37
#define GPIO_USB_NRESET 38
38
39
40
/* Board initialization */
41
static struct omap_board_config_kernel am3517_crane_config[] __initdata = {
42
};
43
44
#ifdef CONFIG_OMAP_MUX
45
static struct omap_board_mux board_mux[] __initdata = {
46
{ .reg_offset = OMAP_MUX_TERMINATOR },
47
};
48
#else
49
#define board_mux NULL
50
#endif
51
52
static void __init am3517_crane_init_early(void)
53
{
54
omap2_init_common_infrastructure();
55
omap2_init_common_devices(NULL, NULL);
56
}
57
58
static struct usbhs_omap_board_data usbhs_bdata __initdata = {
59
.port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
60
.port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
61
.port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
62
63
.phy_reset = true,
64
.reset_gpio_port[0] = GPIO_USB_NRESET,
65
.reset_gpio_port[1] = -EINVAL,
66
.reset_gpio_port[2] = -EINVAL
67
};
68
69
static void __init am3517_crane_init(void)
70
{
71
int ret;
72
73
omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
74
omap_serial_init();
75
76
omap_board_config = am3517_crane_config;
77
omap_board_config_size = ARRAY_SIZE(am3517_crane_config);
78
79
/* Configure GPIO for EHCI port */
80
if (omap_mux_init_gpio(GPIO_USB_NRESET, OMAP_PIN_OUTPUT)) {
81
pr_err("Can not configure mux for GPIO_USB_NRESET %d\n",
82
GPIO_USB_NRESET);
83
return;
84
}
85
86
if (omap_mux_init_gpio(GPIO_USB_POWER, OMAP_PIN_OUTPUT)) {
87
pr_err("Can not configure mux for GPIO_USB_POWER %d\n",
88
GPIO_USB_POWER);
89
return;
90
}
91
92
ret = gpio_request_one(GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
93
"usb_ehci_enable");
94
if (ret < 0) {
95
pr_err("Can not request GPIO %d\n", GPIO_USB_POWER);
96
return;
97
}
98
99
usbhs_init(&usbhs_bdata);
100
}
101
102
MACHINE_START(CRANEBOARD, "AM3517/05 CRANEBOARD")
103
.boot_params = 0x80000100,
104
.reserve = omap_reserve,
105
.map_io = omap3_map_io,
106
.init_early = am3517_crane_init_early,
107
.init_irq = omap_init_irq,
108
.init_machine = am3517_crane_init,
109
.timer = &omap_timer,
110
MACHINE_END
111
112