Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | // SPDX-License-Identifier: GPL-2.0+ /* * LG Optimus Black codename sniper board * * Copyright (C) 2015 Paul Kocialkowski <contact@paulk.fr> */ #include <config.h> #include <dm.h> #include <env.h> #include <fastboot.h> #include <init.h> #include <asm/global_data.h> #include <linux/ctype.h> #include <linux/usb/musb.h> #include <asm/omap_musb.h> #include <asm/arch/sys_proto.h> #include <asm/arch/mem.h> #include <asm/io.h> #include <twl4030.h> #include "sniper.h" DECLARE_GLOBAL_DATA_PTR; const omap3_sysinfo sysinfo = { .mtype = DDR_STACKED, .board_string = "sniper", .nand_string = "MMC" }; #if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_USB_MUSB_GADGET) static struct musb_hdrc_config musb_config = { .multipoint = 1, .dyn_fifo = 1, .num_eps = 16, .ram_bits = 12 }; static struct omap_musb_board_data musb_board_data = { .interface_type = MUSB_INTERFACE_ULPI, }; static struct musb_hdrc_platform_data musb_platform_data = { .mode = MUSB_PERIPHERAL, .config = &musb_config, .power = 100, .platform_ops = &omap2430_ops, .board_data = &musb_board_data, }; #endif void set_muxconf_regs(void) { MUX_SNIPER(); } #ifdef CONFIG_XPL_BUILD void get_board_mem_timings(struct board_sdrc_timings *timings) { timings->mcfg = HYNIX_V_MCFG_200(256 << 20); timings->ctrla = HYNIX_V_ACTIMA_200; timings->ctrlb = HYNIX_V_ACTIMB_200; timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz; timings->mr = MICRON_V_MR_165; } void spl_board_init(void) { twl4030_power_mmc_init(1); } #endif int board_init(void) { /* GPMC init */ gpmc_init(); /* MACH number */ gd->bd->bi_arch_number = 3000; /* ATAGs location */ gd->bd->bi_boot_params = OMAP34XX_SDRC_CS0 + 0x100; return 0; } int misc_init_r(void) { unsigned char keypad_matrix[64] = { 0 }; char reboot_mode[2] = { 0 }; unsigned char keys[3]; unsigned char data = 0; int rc; /* Power button reset init */ twl4030_power_reset_init(); /* Keypad */ twl4030_keypad_scan((unsigned char *)&keypad_matrix); keys[0] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 0); keys[1] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 1); keys[2] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 2); /* Reboot mode */ rc = omap_reboot_mode(reboot_mode, sizeof(reboot_mode)); if (keys[0]) reboot_mode[0] = 'r'; else if (keys[1]) reboot_mode[0] = 'b'; if (rc < 0 || reboot_mode[0] == 'o') { /* * When not rebooting, valid power on reasons are either the * power button, charger plug or USB plug. */ data |= twl4030_input_power_button(); data |= twl4030_input_charger(); data |= twl4030_input_usb(); if (!data) twl4030_power_off(); } if (reboot_mode[0] > 0 && isascii(reboot_mode[0])) { if (!env_get("reboot-mode")) env_set("reboot-mode", (char *)reboot_mode); } omap_reboot_mode_clear(); /* Serial number */ omap_die_id_serial(); /* MUSB */ #if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_USB_MUSB_GADGET) musb_register(&musb_platform_data, &musb_board_data, (void *)MUSB_BASE); #endif return 0; } #ifdef CONFIG_REVISION_TAG u32 get_board_rev(void) { /* Sold devices are expected to be at least revision F. */ return 6; } #endif void get_board_serial(struct tag_serialnr *serialnr) { omap_die_id_get_board_serial(serialnr); } void reset_misc(void) { char reboot_mode[2] = { 0 }; /* * Valid resets must contain the reboot mode magic, but we must not * override it when set previously (e.g. reboot to bootloader). */ omap_reboot_mode(reboot_mode, sizeof(reboot_mode)); omap_reboot_mode_store(reboot_mode); } int fastboot_set_reboot_flag(enum fastboot_reboot_reason reason) { if (reason != FASTBOOT_REBOOT_REASON_BOOTLOADER) return -ENOTSUPP; return omap_reboot_mode_store("b"); } |