]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/amazon/kc1/kc1.c
Merge git://git.denx.de/u-boot-tegra
[people/ms/u-boot.git] / board / amazon / kc1 / kc1.c
CommitLineData
ae51b570
PK
1/*
2 * Amazon Kindle Fire (first generation) codename kc1 config
3 *
4 * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <config.h>
10#include <common.h>
e66782e6
PK
11#include <linux/ctype.h>
12#include <linux/usb/musb.h>
13#include <asm/omap_musb.h>
ae51b570
PK
14#include <asm/arch/sys_proto.h>
15#include <asm/arch/mmc_host_def.h>
16#include <asm/gpio.h>
17#include <asm/emif.h>
18#include <twl6030.h>
19#include "kc1.h"
c62db35d 20#include <asm/mach-types.h>
ae51b570
PK
21
22DECLARE_GLOBAL_DATA_PTR;
23
24const struct omap_sysinfo sysinfo = {
25 .board_string = "kc1"
26};
27
e66782e6
PK
28static struct musb_hdrc_config musb_config = {
29 .multipoint = 1,
30 .dyn_fifo = 1,
31 .num_eps = 16,
32 .ram_bits = 12
33};
34
35static struct omap_musb_board_data musb_board_data = {
36 .interface_type = MUSB_INTERFACE_UTMI,
37};
38
39static struct musb_hdrc_platform_data musb_platform_data = {
40 .mode = MUSB_PERIPHERAL,
41 .config = &musb_config,
42 .power = 100,
43 .platform_ops = &omap2430_ops,
44 .board_data = &musb_board_data,
45};
46
47
ae51b570
PK
48void set_muxconf_regs(void)
49{
50 do_set_mux((*ctrl)->control_padconf_core_base, core_padconf_array,
51 sizeof(core_padconf_array) / sizeof(struct pad_conf_entry));
52}
53
54struct lpddr2_device_details *emif_get_device_details(u32 emif_nr, u8 cs,
55 struct lpddr2_device_details *lpddr2_dev_details)
56{
57 if (cs == CS1)
58 return NULL;
59
60 *lpddr2_dev_details = elpida_2G_S4_details;
61
62 return lpddr2_dev_details;
63}
64
65void emif_get_device_timings(u32 emif_nr,
66 const struct lpddr2_device_timings **cs0_device_timings,
67 const struct lpddr2_device_timings **cs1_device_timings)
68{
69 *cs0_device_timings = &elpida_2G_S4_timings;
70 *cs1_device_timings = NULL;
71}
72
73int board_init(void)
74{
75 /* GPMC init */
76 gpmc_init();
77
78 /* MACH number */
79 gd->bd->bi_arch_number = MACH_TYPE_OMAP_4430SDP;
80
81 /* ATAGs location */
82 gd->bd->bi_boot_params = OMAP44XX_DRAM_ADDR_SPACE_START + 0x100;
83
84 return 0;
85}
86
87int misc_init_r(void)
88{
7c0a4b79 89 char reboot_mode[2] = { 0 };
ee85a415 90 u32 data = 0;
bd55eedc 91 u32 value;
523849a0 92 int rc;
7c0a4b79
PK
93
94 /* Reboot mode */
95
523849a0 96 rc = omap_reboot_mode(reboot_mode, sizeof(reboot_mode));
7c0a4b79 97
bd55eedc
PK
98 /* USB ID pin pull-up indicates factory (fastboot) cable detection. */
99 gpio_request(KC1_GPIO_USB_ID, "USB_ID");
100 gpio_direction_input(KC1_GPIO_USB_ID);
101 value = gpio_get_value(KC1_GPIO_USB_ID);
102
103 if (value)
104 reboot_mode[0] = 'b';
105
523849a0 106 if (rc < 0 || reboot_mode[0] == 'o') {
ee85a415
PK
107 /*
108 * When not rebooting, valid power on reasons are either the
109 * power button, charger plug or USB plug.
110 */
111
112 data |= twl6030_input_power_button();
113 data |= twl6030_input_charger();
114 data |= twl6030_input_usb();
115
116 if (!data)
117 twl6030_power_off();
7c0a4b79
PK
118 }
119
523849a0 120 if (reboot_mode[0] > 0 && isascii(reboot_mode[0])) {
00caae6d 121 if (!env_get("reboot-mode"))
382bee57 122 env_set("reboot-mode", (char *)reboot_mode);
523849a0
PK
123 }
124
125 omap_reboot_mode_clear();
126
ae51b570
PK
127 /* Serial number */
128
129 omap_die_id_serial();
130
e66782e6
PK
131 /* MUSB */
132
133 musb_register(&musb_platform_data, &musb_board_data, (void *)MUSB_BASE);
134
ae51b570
PK
135 return 0;
136}
137
138u32 get_board_rev(void)
139{
140 u32 value = 0;
141
142 gpio_request(KC1_GPIO_MBID0, "MBID0");
143 gpio_request(KC1_GPIO_MBID1, "MBID1");
144 gpio_request(KC1_GPIO_MBID2, "MBID2");
145 gpio_request(KC1_GPIO_MBID3, "MBID3");
146
147 gpio_direction_input(KC1_GPIO_MBID0);
148 gpio_direction_input(KC1_GPIO_MBID1);
149 gpio_direction_input(KC1_GPIO_MBID2);
150 gpio_direction_input(KC1_GPIO_MBID3);
151
152 value |= (gpio_get_value(KC1_GPIO_MBID0) << 0);
153 value |= (gpio_get_value(KC1_GPIO_MBID1) << 1);
154 value |= (gpio_get_value(KC1_GPIO_MBID2) << 2);
155 value |= (gpio_get_value(KC1_GPIO_MBID3) << 3);
156
157 return value;
158}
159
160void get_board_serial(struct tag_serialnr *serialnr)
161{
162 omap_die_id_get_board_serial(serialnr);
163}
164
7c0a4b79
PK
165int fb_set_reboot_flag(void)
166{
167 return omap_reboot_mode_store("b");
168}
169
ae51b570
PK
170int board_mmc_init(bd_t *bis)
171{
172 return omap_mmc_init(1, 0, 0, -1, -1);
173}
ae51b570
PK
174
175void board_mmc_power_init(void)
176{
177 twl6030_power_mmc_init(1);
178}