blob: ba95cbb06498cd5ea6fd0525b903a28bcfe04f1f [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
2 * Copyright (c) 2008 Travis Geiselbrecht
3 *
Aravind Venkateswarandd50c1a2014-02-25 14:42:43 -08004 * Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
Channagoud Kadabic3ecbf42013-05-08 12:54:05 -07005 *
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07006 * 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#ifndef __TARGET_H
26#define __TARGET_H
27
Channagoud Kadabi77b52272014-02-04 17:01:16 -080028
29/* Target helper functions exposed to USB driver */
30typedef struct {
31 void (*mux_config) ();
32 void (*phy_reset) ();
33 void (*phy_init) ();
34 void (*clock_init) ();
35 uint8_t vbus_override;
36} target_usb_iface_t;
37
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070038/* super early platform initialization, before almost everything */
39void target_early_init(void);
40
41/* later init, after the kernel has come up */
42void target_init(void);
43
David Ng3679bc52010-02-09 15:43:43 -080044/* get memory address for fastboot image loading */
45void *target_get_scratch_address(void);
46
Vivek Mehta5f1c9d42011-04-01 20:11:59 -070047/* get the max allowed flash size */
48unsigned target_get_max_flash_size(void);
49
David Ng183a7422009-12-07 14:55:21 -080050/* if target is using eMMC bootup */
51int target_is_emmc_boot(void);
52
Greg Griscod6250552011-06-29 14:40:23 -070053unsigned* target_atag_mem(unsigned* ptr);
Greg Griscod6250552011-06-29 14:40:23 -070054void target_battery_charging_enable(unsigned enable, unsigned disconnect);
55unsigned target_pause_for_battery_charge(void);
56unsigned target_baseband(void);
57void target_serialno(unsigned char *buf);
58void target_fastboot_init(void);
Stanimir Varbanov677001e2013-07-18 18:16:39 +030059void target_load_ssd_keystore(void);
Stanimir Varbanov8bc68c72013-07-08 18:22:04 +030060bool target_is_ssd_enabled(void);
Channagoud Kadabi9fbdcdf2013-09-19 16:24:16 -070061void *target_mmc_device();
Matthew Qindefd5562014-07-11 18:02:40 +080062uint32_t is_user_force_reset(void);
Greg Griscod6250552011-06-29 14:40:23 -070063
Ajay Singh Parmar430bbb32014-03-18 15:26:30 -070064bool target_display_panel_node(char *panel_name, char *pbuf,
65 uint16_t buf_size);
Aravind Venkateswaran6385f7e2014-02-25 16:45:11 -080066void target_display_init(const char *panel_name);
Aravind Venkateswarandd50c1a2014-02-25 14:42:43 -080067void target_display_shutdown(void);
68
Sundarajan Srinivasan289ff3f2013-09-30 16:46:29 -070069uint32_t target_get_boot_device();
70
Amol Jadi9ff7bb52013-10-11 14:11:45 -070071const char * target_usb_controller();
72void target_usb_phy_reset(void);
73void target_usb_phy_mux_configure(void);
Channagoud Kadabi77b52272014-02-04 17:01:16 -080074target_usb_iface_t * target_usb30_init();
Sundarajan Srinivasan8031f6c2014-03-12 15:45:28 -070075bool target_is_cdp_qvga();
Channagoud Kadabi62ac4cb2014-05-13 11:55:38 -070076uint32_t target_hw_interposer();
Channagoud Kadabid6ded112014-05-12 18:07:24 -070077uint32_t target_override_pll();
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070078#endif