blob: 7d62a1d5a863f14b6e79d16abc9744cfb511bd06 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +01002/*
3 * Amazon Kindle Fire (first generation) codename kc1 config
4 *
5 * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +01006 */
7
8#include <config.h>
9#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060010#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Paul Kocialkowski75089e52016-02-27 19:19:06 +010012#include <linux/ctype.h>
13#include <linux/usb/musb.h>
14#include <asm/omap_musb.h>
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +010015#include <asm/arch/sys_proto.h>
16#include <asm/arch/mmc_host_def.h>
17#include <asm/gpio.h>
18#include <asm/emif.h>
19#include <twl6030.h>
20#include "kc1.h"
Simon Glass0ffb9d62017-05-31 19:47:48 -060021#include <asm/mach-types.h>
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +010022
23DECLARE_GLOBAL_DATA_PTR;
24
25const struct omap_sysinfo sysinfo = {
26 .board_string = "kc1"
27};
28
Paul Kocialkowski75089e52016-02-27 19:19:06 +010029static struct musb_hdrc_config musb_config = {
30 .multipoint = 1,
31 .dyn_fifo = 1,
32 .num_eps = 16,
33 .ram_bits = 12
34};
35
36static struct omap_musb_board_data musb_board_data = {
37 .interface_type = MUSB_INTERFACE_UTMI,
38};
39
40static struct musb_hdrc_platform_data musb_platform_data = {
41 .mode = MUSB_PERIPHERAL,
42 .config = &musb_config,
43 .power = 100,
44 .platform_ops = &omap2430_ops,
45 .board_data = &musb_board_data,
46};
47
48
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +010049void set_muxconf_regs(void)
50{
51 do_set_mux((*ctrl)->control_padconf_core_base, core_padconf_array,
52 sizeof(core_padconf_array) / sizeof(struct pad_conf_entry));
53}
54
55struct lpddr2_device_details *emif_get_device_details(u32 emif_nr, u8 cs,
56 struct lpddr2_device_details *lpddr2_dev_details)
57{
58 if (cs == CS1)
59 return NULL;
60
61 *lpddr2_dev_details = elpida_2G_S4_details;
62
63 return lpddr2_dev_details;
64}
65
66void emif_get_device_timings(u32 emif_nr,
67 const struct lpddr2_device_timings **cs0_device_timings,
68 const struct lpddr2_device_timings **cs1_device_timings)
69{
70 *cs0_device_timings = &elpida_2G_S4_timings;
71 *cs1_device_timings = NULL;
72}
73
74int board_init(void)
75{
76 /* GPMC init */
77 gpmc_init();
78
79 /* MACH number */
80 gd->bd->bi_arch_number = MACH_TYPE_OMAP_4430SDP;
81
82 /* ATAGs location */
83 gd->bd->bi_boot_params = OMAP44XX_DRAM_ADDR_SPACE_START + 0x100;
84
85 return 0;
86}
87
88int misc_init_r(void)
89{
Paul Kocialkowskifc453922016-02-27 19:19:09 +010090 char reboot_mode[2] = { 0 };
Paul Kocialkowski31d8ef82016-02-27 19:19:14 +010091 u32 data = 0;
Paul Kocialkowskibdcbdcf2016-02-27 19:19:10 +010092 u32 value;
Paul Kocialkowski050f9332016-03-29 14:16:26 +020093 int rc;
Paul Kocialkowskifc453922016-02-27 19:19:09 +010094
95 /* Reboot mode */
96
Paul Kocialkowski050f9332016-03-29 14:16:26 +020097 rc = omap_reboot_mode(reboot_mode, sizeof(reboot_mode));
Paul Kocialkowskifc453922016-02-27 19:19:09 +010098
Paul Kocialkowskibdcbdcf2016-02-27 19:19:10 +010099 /* USB ID pin pull-up indicates factory (fastboot) cable detection. */
100 gpio_request(KC1_GPIO_USB_ID, "USB_ID");
101 gpio_direction_input(KC1_GPIO_USB_ID);
102 value = gpio_get_value(KC1_GPIO_USB_ID);
103
104 if (value)
105 reboot_mode[0] = 'b';
106
Paul Kocialkowski050f9332016-03-29 14:16:26 +0200107 if (rc < 0 || reboot_mode[0] == 'o') {
Paul Kocialkowski31d8ef82016-02-27 19:19:14 +0100108 /*
109 * When not rebooting, valid power on reasons are either the
110 * power button, charger plug or USB plug.
111 */
112
113 data |= twl6030_input_power_button();
114 data |= twl6030_input_charger();
115 data |= twl6030_input_usb();
116
117 if (!data)
118 twl6030_power_off();
Paul Kocialkowskifc453922016-02-27 19:19:09 +0100119 }
120
Paul Kocialkowski050f9332016-03-29 14:16:26 +0200121 if (reboot_mode[0] > 0 && isascii(reboot_mode[0])) {
Simon Glass64b723f2017-08-03 12:22:12 -0600122 if (!env_get("reboot-mode"))
Simon Glass6a38e412017-08-03 12:22:09 -0600123 env_set("reboot-mode", (char *)reboot_mode);
Paul Kocialkowski050f9332016-03-29 14:16:26 +0200124 }
125
126 omap_reboot_mode_clear();
127
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +0100128 /* Serial number */
129
130 omap_die_id_serial();
131
Paul Kocialkowski75089e52016-02-27 19:19:06 +0100132 /* MUSB */
133
134 musb_register(&musb_platform_data, &musb_board_data, (void *)MUSB_BASE);
135
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +0100136 return 0;
137}
138
139u32 get_board_rev(void)
140{
141 u32 value = 0;
142
143 gpio_request(KC1_GPIO_MBID0, "MBID0");
144 gpio_request(KC1_GPIO_MBID1, "MBID1");
145 gpio_request(KC1_GPIO_MBID2, "MBID2");
146 gpio_request(KC1_GPIO_MBID3, "MBID3");
147
148 gpio_direction_input(KC1_GPIO_MBID0);
149 gpio_direction_input(KC1_GPIO_MBID1);
150 gpio_direction_input(KC1_GPIO_MBID2);
151 gpio_direction_input(KC1_GPIO_MBID3);
152
153 value |= (gpio_get_value(KC1_GPIO_MBID0) << 0);
154 value |= (gpio_get_value(KC1_GPIO_MBID1) << 1);
155 value |= (gpio_get_value(KC1_GPIO_MBID2) << 2);
156 value |= (gpio_get_value(KC1_GPIO_MBID3) << 3);
157
158 return value;
159}
160
161void get_board_serial(struct tag_serialnr *serialnr)
162{
163 omap_die_id_get_board_serial(serialnr);
164}
165
Alex Kiernan5512c432018-05-29 15:30:46 +0000166int fastboot_set_reboot_flag(void)
Paul Kocialkowskifc453922016-02-27 19:19:09 +0100167{
168 return omap_reboot_mode_store("b");
169}
170
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900171int board_mmc_init(struct bd_info *bis)
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +0100172{
173 return omap_mmc_init(1, 0, 0, -1, -1);
174}
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +0100175
176void board_mmc_power_init(void)
177{
178 twl6030_power_mmc_init(1);
179}