Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008 Travis Geiselbrecht |
| 3 | * |
P.V. Phani Kumar | 68d1301 | 2016-04-05 17:30:17 +0530 | [diff] [blame] | 4 | * Copyright (c) 2014-2016, The Linux Foundation. All rights reserved. |
Sundarajan Srinivasan | 79e5f51 | 2014-03-28 16:43:06 -0700 | [diff] [blame] | 5 | * |
Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 6 | * Permission is hereby granted, free of charge, to any person obtaining |
| 7 | * a copy of this software and associated documentation files |
| 8 | * (the "Software"), to deal in the Software without restriction, |
| 9 | * including without limitation the rights to use, copy, modify, merge, |
| 10 | * publish, distribute, sublicense, and/or sell copies of the Software, |
| 11 | * and to permit persons to whom the Software is furnished to do so, |
| 12 | * subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be |
| 15 | * included in all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 20 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 21 | * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 22 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 23 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | */ |
| 25 | #include <err.h> |
| 26 | #include <debug.h> |
| 27 | #include <platform.h> |
Amol Jadi | 02ca2ee | 2013-03-15 16:06:34 -0700 | [diff] [blame] | 28 | #include <boot_stats.h> |
Sundarajan Srinivasan | 79e5f51 | 2014-03-28 16:43:06 -0700 | [diff] [blame] | 29 | #include <platform/iomap.h> |
P.V. Phani Kumar | 68d1301 | 2016-04-05 17:30:17 +0530 | [diff] [blame] | 30 | #include <image_verify.h> |
Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 31 | |
Amol Jadi | 4421e65 | 2011-06-16 15:00:48 -0700 | [diff] [blame] | 32 | /* |
Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 33 | * default implementations of these routines, if the platform code |
| 34 | * chooses not to implement. |
| 35 | */ |
Deepa Dinamani | 20cb9e5 | 2012-10-18 12:20:47 -0700 | [diff] [blame] | 36 | __WEAK int platform_use_identity_mmu_mappings(void) |
| 37 | { |
| 38 | return 1; |
| 39 | } |
Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 40 | |
| 41 | __WEAK void platform_init_mmu_mappings(void) |
| 42 | { |
| 43 | } |
| 44 | |
Deepa Dinamani | 20cb9e5 | 2012-10-18 12:20:47 -0700 | [diff] [blame] | 45 | __WEAK addr_t platform_get_virt_to_phys_mapping(addr_t virt_addr) |
| 46 | { |
| 47 | ASSERT(platform_use_identity_mmu_mappings()); |
| 48 | |
| 49 | return virt_addr; |
| 50 | } |
| 51 | |
| 52 | __WEAK addr_t platform_get_phys_to_virt_mapping(addr_t phys_addr) |
| 53 | { |
| 54 | ASSERT(platform_use_identity_mmu_mappings()); |
| 55 | |
| 56 | return phys_addr; |
| 57 | } |
| 58 | |
Travis Geiselbrecht | 1d0df69 | 2008-09-01 02:26:09 -0700 | [diff] [blame] | 59 | __WEAK void platform_early_init(void) |
| 60 | { |
| 61 | } |
| 62 | |
| 63 | __WEAK void platform_init(void) |
| 64 | { |
| 65 | } |
| 66 | |
Chandan Uddaraju | 2412050 | 2009-12-12 19:17:04 -0800 | [diff] [blame] | 67 | __WEAK void display_init(void) |
| 68 | { |
| 69 | } |
Shashank Mittal | 23b8f42 | 2010-04-16 19:27:21 -0700 | [diff] [blame] | 70 | |
Shashank Mittal | c648e71 | 2010-10-06 18:37:42 -0700 | [diff] [blame] | 71 | __WEAK void display_shutdown(void) |
| 72 | { |
| 73 | } |
| 74 | |
Chandan Uddaraju | 14e57eb | 2010-06-28 12:11:06 -0700 | [diff] [blame] | 75 | __WEAK void platform_config_interleaved_mode_gpios(void) |
| 76 | { |
| 77 | } |
Shashank Mittal | ed17773 | 2011-05-06 19:12:59 -0700 | [diff] [blame] | 78 | |
| 79 | __WEAK void uart_clock_init(void) |
| 80 | { |
| 81 | } |
| 82 | |
Amol Jadi | 4421e65 | 2011-06-16 15:00:48 -0700 | [diff] [blame] | 83 | __WEAK void platform_uninit(void) |
| 84 | { |
| 85 | } |
Shashank Mittal | cd98d47 | 2011-08-02 14:29:24 -0700 | [diff] [blame] | 86 | |
| 87 | __WEAK int image_verify(unsigned char * image_ptr, |
| 88 | unsigned char * signature_ptr, |
| 89 | unsigned int image_size, |
| 90 | unsigned hash_type) |
| 91 | { |
| 92 | return 0; |
| 93 | } |
Deepa Dinamani | 5e5c21a | 2012-02-16 18:59:57 -0800 | [diff] [blame] | 94 | |
Pavel Nedev | 36c2337 | 2013-03-19 15:38:53 +0200 | [diff] [blame] | 95 | __WEAK void ce_clock_init(void) |
Deepa Dinamani | 5e5c21a | 2012-02-16 18:59:57 -0800 | [diff] [blame] | 96 | { |
| 97 | } |
Amol Jadi | 02ca2ee | 2013-03-15 16:06:34 -0700 | [diff] [blame] | 98 | |
sundarajan srinivasan | caab0f4 | 2013-05-10 14:21:30 -0700 | [diff] [blame] | 99 | __WEAK addr_t get_bs_info_addr() |
Amol Jadi | 02ca2ee | 2013-03-15 16:06:34 -0700 | [diff] [blame] | 100 | { |
Unnati Gandhi | e12c2bf | 2014-07-17 15:07:44 +0530 | [diff] [blame] | 101 | return 0; |
sundarajan srinivasan | caab0f4 | 2013-05-10 14:21:30 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | __WEAK uint32_t platform_get_sclk_count(void) |
| 105 | { |
| 106 | return 0; |
Amol Jadi | 02ca2ee | 2013-03-15 16:06:34 -0700 | [diff] [blame] | 107 | } |
Channagoud Kadabi | 071b2d8 | 2013-08-20 15:31:32 -0700 | [diff] [blame] | 108 | |
Unnati Gandhi | e12c2bf | 2014-07-17 15:07:44 +0530 | [diff] [blame] | 109 | __WEAK void clock_config_cdc(uint32_t slot) |
Channagoud Kadabi | 071b2d8 | 2013-08-20 15:31:32 -0700 | [diff] [blame] | 110 | { |
Unnati Gandhi | e12c2bf | 2014-07-17 15:07:44 +0530 | [diff] [blame] | 111 | |
Channagoud Kadabi | 071b2d8 | 2013-08-20 15:31:32 -0700 | [diff] [blame] | 112 | } |
Joonwoo Park | 6111278 | 2013-10-02 19:50:39 -0700 | [diff] [blame] | 113 | |
| 114 | __WEAK int get_target_boot_params(const char *cmdline, const char *part, |
vijay kumar | 870515d | 2015-08-31 16:37:24 +0530 | [diff] [blame] | 115 | char **buf) |
Joonwoo Park | 6111278 | 2013-10-02 19:50:39 -0700 | [diff] [blame] | 116 | { |
| 117 | return -1; |
| 118 | } |
Sundarajan Srinivasan | 79e5f51 | 2014-03-28 16:43:06 -0700 | [diff] [blame] | 119 | |
| 120 | __WEAK uint32_t platform_get_smem_base_addr() |
| 121 | { |
| 122 | return (uint32_t)MSM_SHARED_BASE; |
| 123 | } |
Sundarajan Srinivasan | 1f5fa15 | 2014-03-21 17:30:52 -0700 | [diff] [blame] | 124 | |
| 125 | __WEAK uint32_t platform_boot_dev_isemmc() |
| 126 | { |
| 127 | return 1; |
| 128 | } |
| 129 | |
| 130 | __WEAK uint32_t platform_get_boot_dev() |
| 131 | { |
| 132 | return 0; |
| 133 | } |
Channagoud Kadabi | 000e8b3 | 2014-12-08 16:48:52 -0800 | [diff] [blame] | 134 | |
| 135 | __WEAK int boot_device_mask(int val) |
| 136 | { |
| 137 | return ((val & 0x3E) >> 1); |
| 138 | } |
Unnati Gandhi | 2488505 | 2014-11-27 16:57:49 +0530 | [diff] [blame] | 139 | |
| 140 | __WEAK uint32_t platform_detect_panel() |
| 141 | { |
| 142 | return 0; |
| 143 | } |
Channagoud Kadabi | d0395a5 | 2015-02-18 11:08:36 -0800 | [diff] [blame] | 144 | |
| 145 | __WEAK uint32_t use_hsonly_mode() |
| 146 | { |
| 147 | return 0; |
| 148 | } |
lijuang | dc20de1 | 2015-02-11 12:09:57 +0800 | [diff] [blame] | 149 | |
| 150 | __WEAK uint32_t check_alarm_boot() |
| 151 | { |
| 152 | return 0; |
| 153 | } |
Aparna Mallavarapu | 711119b | 2015-03-29 03:35:07 +0530 | [diff] [blame] | 154 | __WEAK uint32_t platform_get_max_periph() |
| 155 | { |
| 156 | return 128; |
| 157 | } |
P.V. Phani Kumar | 68d1301 | 2016-04-05 17:30:17 +0530 | [diff] [blame] | 158 | |
| 159 | /* This function definition should not be used if VERIFIED_BOOT |
| 160 | is enabled. And this is expected to be called only for MDM Targets */ |
| 161 | __WEAK uint32_t read_der_message_length(unsigned char* input, unsigned sz) |
| 162 | { |
| 163 | return SIGNATURE_SIZE; |
| 164 | } |
Mayank Grover | 9045701 | 2016-12-29 18:24:04 +0530 | [diff] [blame] | 165 | |
| 166 | /* Check if glink is supported or not */ |
| 167 | __WEAK bool platform_is_glink_enabled() |
| 168 | { |
| 169 | #if GLINK_SUPPORT |
| 170 | return 1; |
| 171 | #else |
| 172 | return 0; |
| 173 | #endif |
| 174 | } |
| 175 | |