]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/lge/sniper/sniper.c
sniper: Pass serial number through ATAG
[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 get_board_serial(struct tag_serialnr *serialnr)
102 {
103         char *serial_string;
104         unsigned long long serial;
105
106         serial_string = getenv("serial#");
107
108         if (serial_string) {
109                 serial = simple_strtoull(serial_string, NULL, 16);
110
111                 serialnr->high = (unsigned int) (serial >> 32);
112                 serialnr->low = (unsigned int) (serial & 0xffffffff);
113         } else {
114                 serialnr->high = 0;
115                 serialnr->low = 0;
116         }
117 }
118
119 void set_muxconf_regs(void)
120 {
121         MUX_SNIPER();
122 }
123
124 #ifndef CONFIG_SPL_BUILD
125 int board_mmc_init(bd_t *bis)
126 {
127         return omap_mmc_init(1, 0, 0, -1, -1);
128 }
129 #endif
130
131 void board_mmc_power_init(void)
132 {
133         twl4030_power_mmc_init(1);
134 }