commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
10 lines
433 B
C
10 lines
433 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
extern int tango_smc(unsigned int val, unsigned int service);
|
|
|
|
#define tango_set_l2_control(val) tango_smc(val, 0x102)
|
|
#define tango_start_aux_core(val) tango_smc(val, 0x104)
|
|
#define tango_set_aux_boot_addr(val) tango_smc(val, 0x105)
|
|
#define tango_suspend(val) tango_smc(val, 0x120)
|
|
#define tango_aux_core_die(val) tango_smc(val, 0x121)
|
|
#define tango_aux_core_kill(val) tango_smc(val, 0x122)
|