19 lines
272 B
C
19 lines
272 B
C
|
// SPDX-License-Identifier: (GPL-2.0+ or MIT)
|
||
|
/*
|
||
|
* Copyright (C) 2022 liujuan1@allwinnertech.com
|
||
|
*/
|
||
|
|
||
|
#ifndef __DT_SUNXI_CLK_H
|
||
|
#define __DT_SUNXI_CLK_H
|
||
|
|
||
|
#define TR_1 0
|
||
|
#define TR_N 1
|
||
|
|
||
|
#define FREQ_31_5 0
|
||
|
#define FREQ_32 1
|
||
|
#define FREQ_32_5 2
|
||
|
#define FREQ_33 3
|
||
|
|
||
|
#endif
|
||
|
|