]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/lge/sniper/sniper.c
f26855dd39748239eb7c5638adde9900afdfe67a
[karo-tx-uboot.git] / board / lge / sniper / sniper.c
1 /*
2  * LG Optimus Black (P970) codename sniper board
3  *
4  * Copyright (C) 2015 Paul Kocialkowski <contact@paulk.fr>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <config.h>
10 #include <common.h>
11 #include <dm.h>
12 #include <linux/ctype.h>
13 #include <asm/arch/mmc_host_def.h>
14 #include <asm/arch/sys_proto.h>
15 #include <asm/arch/mem.h>
16 #include <asm/io.h>
17 #include <ns16550.h>
18 #include <twl4030.h>
19 #include "sniper.h"
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 const omap3_sysinfo sysinfo = {
24         .mtype = DDR_STACKED,
25         .board_string = "Sniper",
26         .nand_string = "MMC"
27 };
28
29 static const struct ns16550_platdata serial_omap_platdata = {
30         .base = OMAP34XX_UART3,
31         .reg_shift = 2,
32         .clock = V_NS16550_CLK
33 };
34
35 U_BOOT_DEVICE(sniper_serial) = {
36         .name = "serial_omap",
37         .platdata = &serial_omap_platdata
38 };
39
40 #ifdef CONFIG_SPL_BUILD
41 void get_board_mem_timings(struct board_sdrc_timings *timings)
42 {
43         timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
44         timings->ctrla = HYNIX_V_ACTIMA_200;
45         timings->ctrlb = HYNIX_V_ACTIMB_200;
46         timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
47         timings->mr = MICRON_V_MR_165;
48 }
49 #endif
50
51 u32 get_board_rev(void)
52 {
53         /* Sold devices are expected to be at least revision F. */
54         return 6;
55 }
56
57 int board_init(void)
58 {
59         /* GPMC init */
60         gpmc_init();
61
62         /* MACH number */
63         gd->bd->bi_arch_number = 3000;
64
65         /* ATAGs location */
66         gd->bd->bi_boot_params = OMAP34XX_SDRC_CS0 + 0x100;
67
68         return 0;
69 }
70
71 int misc_init_r(void)
72 {
73         char serial_string[17] = { 0 };
74         char reboot_mode[2] = { 0 };
75         u32 dieid[4] = { 0 };
76
77         /* Reboot mode */
78
79         reboot_mode[0] = omap_reboot_mode();
80         if (reboot_mode[0] > 0 && isascii(reboot_mode[0])) {
81                 if (!getenv("reboot-mode"))
82                         setenv("reboot-mode", (char *)reboot_mode);
83
84                 omap_reboot_mode_clear();
85         }
86
87         /* Serial number */
88
89         get_dieid((u32 *)&dieid);
90
91         if (!getenv("serial#")) {
92                 snprintf(serial_string, sizeof(serial_string),
93                         "%08x%08x", dieid[0], dieid[3]);
94
95                 setenv("serial#", serial_string);
96         }
97
98         return 0;
99 }
100
101 void set_muxconf_regs(void)
102 {
103         MUX_SNIPER();
104 }
105
106 #ifndef CONFIG_SPL_BUILD
107 int board_mmc_init(bd_t *bis)
108 {
109         return omap_mmc_init(1, 0, 0, -1, -1);
110 }
111 #endif
112
113 void board_mmc_power_init(void)
114 {
115         twl4030_power_mmc_init(1);
116 }