blob: 0d998804dfcdf705ed47de0d931a4a801d7b15b6 [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
Casey Pipera277d882013-10-21 10:11:04 -07002 * Copyright (c) 2008 Travis Geiselbrecht
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07003 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23#include <err.h>
24#include <debug.h>
25#include <target.h>
26#include <compiler.h>
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +030027#include <dload_util.h>
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070028
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -080029#define EXPAND(NAME) #NAME
30#define TARGET(NAME) EXPAND(NAME)
Amol Jadi57abe4c2011-05-24 15:47:27 -070031/*
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070032 * default implementations of these routines, if the target code
33 * chooses not to implement.
34 */
35
36__WEAK void target_early_init(void)
37{
38}
39
40__WEAK void target_init(void)
41{
42}
43
David Ng3679bc52010-02-09 15:43:43 -080044__WEAK void *target_get_scratch_address(void)
45{
46 return (void *)(SCRATCH_ADDR);
47}
48
Vivek Mehta5f1c9d42011-04-01 20:11:59 -070049__WEAK unsigned target_get_max_flash_size(void)
50{
51 return (120 * 1024 * 1024);
52}
53
David Ng183a7422009-12-07 14:55:21 -080054__WEAK int target_is_emmc_boot(void)
55{
David Ng025c1d92009-12-09 23:46:00 -080056#if _EMMC_BOOT
57 return 1;
58#else
David Ng183a7422009-12-07 14:55:21 -080059 return 0;
David Ng025c1d92009-12-09 23:46:00 -080060#endif
David Ng183a7422009-12-07 14:55:21 -080061}
Chandan Uddarajude85d3f2010-01-05 16:32:33 -080062
63__WEAK unsigned check_reboot_mode(void)
64{
65 return 0;
66}
Chandan Uddaraju94183c02010-01-15 15:13:59 -080067
68__WEAK void reboot_device(unsigned reboot_reason)
69{
70}
Chandan Uddaraju7f5b9012010-02-06 16:37:48 -080071
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +030072__WEAK int set_download_mode(enum dload_mode mode)
Pavel Nedev76a3e212013-05-09 10:37:21 +030073{
74 return -1;
75}
76
David Ngf773dde2010-07-26 19:55:08 -070077__WEAK unsigned target_pause_for_battery_charge(void)
78{
79 return 0;
80}
Ajay Dudanid04110c2011-01-17 23:55:07 -080081
82__WEAK unsigned target_baseband()
83{
84 return 0;
85}
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -080086
87__WEAK void target_serialno(unsigned char *buf)
88{
Ajay Dudanif63d02f2011-10-01 08:29:53 -070089 snprintf((char *) buf, 13, "%s",TARGET(BOARD));
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -080090}
Amol Jadi57abe4c2011-05-24 15:47:27 -070091
92__WEAK void target_fastboot_init()
93{
94}
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -070095
96__WEAK int emmc_recovery_init(void)
97{
98 return 0;
99}
Shashank Mittalcd98d472011-08-02 14:29:24 -0700100
101__WEAK bool target_use_signed_kernel(void)
102{
103#if _SIGNED_KERNEL
104 return 1;
105#else
106 return 0;
107#endif
108}
Amol Jadi6834f1a2012-06-29 14:42:59 -0700109
Stanimir Varbanov8bc68c72013-07-08 18:22:04 +0300110__WEAK bool target_is_ssd_enabled(void)
111{
112#ifdef SSD_ENABLE
113 return 1;
114#else
115 return 0;
116#endif
117}
118
Stanimir Varbanov677001e2013-07-18 18:16:39 +0300119__WEAK void target_load_ssd_keystore(void)
120{
121}
Amol Jadi6834f1a2012-06-29 14:42:59 -0700122
123/* Default target does not support continuous splash screen feature. */
124__WEAK int target_cont_splash_screen()
125{
126 return 0;
127}
Amol Jadida118b92012-07-06 19:53:18 -0700128
129/* Default target specific initialization before using USB */
130__WEAK void target_usb_init(void)
131{
132}
133
134/* Default target specific usb shutdown */
135__WEAK void target_usb_stop(void)
136{
137}
Channagoud Kadabifa6179e2013-06-18 18:35:14 -0700138
139/* Default target specific target uninit */
140__WEAK void target_uninit(void)
141{
142}
Dhaval Patelcdcb6462013-07-18 14:46:57 -0700143
Ajay Singh Parmar430bbb32014-03-18 15:26:30 -0700144__WEAK bool target_display_panel_node(char *panel_name, char *pbuf,
145 uint16_t buf_size)
Dhaval Patelcdcb6462013-07-18 14:46:57 -0700146{
147 return false;
148}
Channagoud Kadabi9fbdcdf2013-09-19 16:24:16 -0700149
Aravind Venkateswaran6385f7e2014-02-25 16:45:11 -0800150__WEAK void target_display_init(const char *panel_name)
Aravind Venkateswarandd50c1a2014-02-25 14:42:43 -0800151{
152}
153
154__WEAK void target_display_shutdown(void)
155{
156}
157
Casey Piperf8cebb62013-09-11 15:56:17 -0700158__WEAK uint8_t target_panel_auto_detect_enabled()
159{
160 return 0;
161}
162
Casey Piper48bfc0d2013-11-18 13:24:35 -0800163__WEAK uint8_t target_is_edp()
164{
165 return 0;
166}
167
Amol Jadi417c7f22013-10-07 12:52:21 -0700168/* default usb controller to be used. */
169__WEAK const char * target_usb_controller()
170{
171 return "ci";
172}
Amol Jadi9ff7bb52013-10-11 14:11:45 -0700173
174/* override for target specific usb phy reset. */
175__WEAK void target_usb_phy_reset(void)
176{
177}
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800178
179/* determine if target is in warm boot. */
180__WEAK bool target_warm_boot(void)
181{
182 return false;
183}
Aparna Mallavarapu373d38b2014-05-23 14:47:19 +0530184
185/* Determine the HLOS subtype of the target */
186__WEAK uint32_t target_get_hlos_subtype(void)
187{
188 return 0;
189}