blob: 80a43c00873c528c48928fb3f88cc603ea7af4c2 [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
2 * Copyright (c) 2008 Travis Geiselbrecht
3 *
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
144__WEAK bool target_display_panel_node(char *pbuf, uint16_t buf_size)
145{
146 return false;
147}
Casey Piper20f422f2013-09-11 15:56:17 -0700148
Aravind Venkateswaran35d110b2014-02-25 16:45:11 -0800149__WEAK void target_display_init(const char *panel_name)
Aravind Venkateswaran497653f2014-02-25 14:42:43 -0800150{
151}
152
153__WEAK void target_display_shutdown(void)
154{
155}
156
Casey Piper20f422f2013-09-11 15:56:17 -0700157__WEAK uint8_t target_panel_auto_detect_enabled()
158{
159 return 0;
160}
Casey Piper9b239572013-11-21 14:34:03 -0800161
162__WEAK uint8_t target_is_edp()
163{
164 return 0;
165}
Sridhar Parasuramd04ee852015-08-29 10:56:14 -0700166/* Return Build variant */
167__WEAK bool target_build_variant_user()
168{
169#if USER_BUILD_VARIANT
170 return true;
171#else
172 return false;
173#endif
174}