34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
|
/*
|
||
|
* This header provides macros for Tegra IVC-based IPC bindings.
|
||
|
*
|
||
|
* Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||
|
* more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef _DT_BINDINGS_TEGRA_HSP_H
|
||
|
#define _DT_BINDINGS_TEGRA_HSP_H
|
||
|
|
||
|
#define TEGRA_HSP_PROC_BPMP_SECURE 3
|
||
|
#define TEGRA_HSP_PROC_SPE_SECURE 4
|
||
|
#define TEGRA_HSP_PROC_SCE_SECURE 5
|
||
|
|
||
|
#define TEGRA_HSP_PROC_BPMP 19
|
||
|
#define TEGRA_HSP_PROC_SPE 20
|
||
|
#define TEGRA_HSP_PROC_SCE 21
|
||
|
#define TEGRA_HSP_PROC_APE 27
|
||
|
|
||
|
#define TEGRA_HSP_DB_BPMP 3
|
||
|
#define TEGRA_HSP_DB_SPE 4
|
||
|
#define TEGRA_HSP_DB_SCE 5
|
||
|
#define TEGRA_HSP_DB_APE 6
|
||
|
|
||
|
#endif
|