blob: 764901a5602dadb619e8e9f183aadb8c927b1a71 [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>
Channagoud Kadabi7d84dd62012-08-24 21:20:56 +053027#include <mmc.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 Nedev76a3e212013-05-09 10:37:21 +030072__WEAK int set_download_mode(void)
73{
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
110
111/* Default target does not support continuous splash screen feature. */
112__WEAK int target_cont_splash_screen()
113{
114 return 0;
115}
Amol Jadida118b92012-07-06 19:53:18 -0700116
117/* Default target specific initialization before using USB */
118__WEAK void target_usb_init(void)
119{
120}
121
122/* Default target specific usb shutdown */
123__WEAK void target_usb_stop(void)
124{
125}
Channagoud Kadabi7d84dd62012-08-24 21:20:56 +0530126
Channagoud Kadabi64063132013-04-02 12:00:01 -0700127/*
128 * Default target specific function to set the capabilities for the host
129 */
130__WEAK void target_mmc_caps(struct mmc_host *host)
Channagoud Kadabi7d84dd62012-08-24 21:20:56 +0530131{
Channagoud Kadabi64063132013-04-02 12:00:01 -0700132 host->caps.ddr_mode = 0;
133 host->caps.hs200_mode = 0;
134 host->caps.bus_width = MMC_BOOT_BUS_WIDTH_4_BIT;
135 host->caps.hs_clk_rate = MMC_CLK_50MHZ;
Channagoud Kadabi7d84dd62012-08-24 21:20:56 +0530136}