26 lines
651 B
C
Executable file
26 lines
651 B
C
Executable file
/*
|
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com/
|
|
*
|
|
* EXYNOS - BTS
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_EXYNOS_BTS_H
|
|
#define __DT_BINDINGS_EXYNOS_BTS_H
|
|
|
|
/* Type of BTS */
|
|
#define IP_BTS (0x1)
|
|
#define TREX_BTS (0x2)
|
|
#define SCI_BTS (0x3)
|
|
#define SMC_BTS (0x4)
|
|
#define BUSC_BTS (0x5)
|
|
#define DREX_BTS (0x6)
|
|
#define INTERNAL_BTS (0x7)
|
|
#define SCI_CPU_BTS (0x8)
|
|
#define SCI_GPU_BTS (0x9)
|
|
|
|
#endif /* _DT_BINDINGS_EXYNOS_BTS_H */
|