mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
Now that we have a subsystem for compute accelerators, move the habanalabs driver to it. This patch only moves the files and fixes the Makefiles. Future patches will change the existing code to register to the accel subsystem and expose the accel device char files instead of the habanalabs device char files. Update the MAINTAINERS file to reflect this change. Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
21 lines
413 B
C
21 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright 2016-2018 HabanaLabs, Ltd.
|
|
* All Rights Reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef GOYA_FW_IF_H
|
|
#define GOYA_FW_IF_H
|
|
|
|
#define GOYA_EVENT_QUEUE_MSIX_IDX 5
|
|
|
|
#define CPU_BOOT_ADDR 0x7FF8040000ull
|
|
|
|
#define UBOOT_FW_OFFSET 0x100000 /* 1MB in SRAM */
|
|
#define LINUX_FW_OFFSET 0x800000 /* 8MB in DDR */
|
|
|
|
#define GOYA_PLL_FREQ_LOW 50000000 /* 50 MHz */
|
|
|
|
#endif /* GOYA_FW_IF_H */
|