blob: fc5c34a3dd2affe08c5beb0844bedb2c2766218d [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
David Ngf773dde2010-07-26 19:55:08 -070072__WEAK unsigned target_pause_for_battery_charge(void)
73{
74 return 0;
75}
Ajay Dudanid04110c2011-01-17 23:55:07 -080076
77__WEAK unsigned target_baseband()
78{
79 return 0;
80}
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -080081
82__WEAK void target_serialno(unsigned char *buf)
83{
Ajay Dudanif63d02f2011-10-01 08:29:53 -070084 snprintf((char *) buf, 13, "%s",TARGET(BOARD));
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -080085}
Amol Jadi57abe4c2011-05-24 15:47:27 -070086
87__WEAK void target_fastboot_init()
88{
89}
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -070090
91__WEAK int emmc_recovery_init(void)
92{
93 return 0;
94}
Shashank Mittalcd98d472011-08-02 14:29:24 -070095
96__WEAK bool target_use_signed_kernel(void)
97{
98#if _SIGNED_KERNEL
99 return 1;
100#else
101 return 0;
102#endif
103}
Amol Jadi6834f1a2012-06-29 14:42:59 -0700104
105
106/* Default target does not support continuous splash screen feature. */
107__WEAK int target_cont_splash_screen()
108{
109 return 0;
110}
Amol Jadida118b92012-07-06 19:53:18 -0700111
112/* Default target specific initialization before using USB */
113__WEAK void target_usb_init(void)
114{
115}
116
117/* Default target specific usb shutdown */
118__WEAK void target_usb_stop(void)
119{
120}
Channagoud Kadabi7d84dd62012-08-24 21:20:56 +0530121
122/* Default target specific function for mmc bus width */
123__WEAK int target_mmc_bus_width()
124{
125 return MMC_BOOT_BUS_WIDTH_4_BIT;
126}