hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Rockchip Vehicle driver
 *
 * Copyright (C) 2022 Rockchip Electronics Co., Ltd.
 */
#ifndef __VEHICLE_MAIN_H
#define __VEHICLE_MAIN_H
 
/* impl by vehicle_main, call by ad detect */
void vehicle_ad_stat_change_notify(void);
void vehicle_cif_stat_change_notify(void);
void vehicle_gpio_stat_change_notify(void);
void vehicle_cif_error_notify(int last_line);
void vehicle_android_is_ready_notify(void);
void vehicle_apk_state_change(char crtc[22]);
void vechile_module_exit(void);
 
#endif