mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
28 lines
533 B
C
Executable File
28 lines
533 B
C
Executable File
/*
|
|
* (C) Copyright 2013-2016
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef SS_HARDWARE_OP_H_
|
|
#define SS_HARDWARE_OP_H_
|
|
|
|
#include <asm/types.h>
|
|
|
|
int ss_get_ver(void);
|
|
void ss_set_drq(u32 addr);
|
|
void ss_ctrl_start(u8 alg_type);
|
|
void ss_ctrl_stop(void);
|
|
void ss_wait_finish(u32 task_id);
|
|
void ss_pending_clear(u32 task_id);
|
|
void ss_irq_enable(u32 task_id);
|
|
void ss_irq_disable(u32 task_id);
|
|
u32 ss_check_err(void);
|
|
void ss_open(void);
|
|
void ss_close(void);
|
|
|
|
#endif
|
|
|
|
|