mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
- Add chip specific nvhost files for t264 - Programming sequence modification needed for Thor - Update the register addresses accordingly for mmio-vm, classid-vm, streamid base-limit, channel, gating registers .etc Bug 4132685 Change-Id: I03e710c0941a68e0b6bc1352134eae6d6fd9c2b0 Signed-off-by: Santosh BS <santoshb@nvidia.com>
36 lines
786 B
C
36 lines
786 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Host1x init for Tegra264 SoCs
|
|
*
|
|
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All Rights Reserved.
|
|
*/
|
|
|
|
/* include hw specification */
|
|
#include "host1x09.h"
|
|
#include "host1x09_hardware.h"
|
|
|
|
/* include code */
|
|
#define HOST1X_HW 9
|
|
|
|
#include "cdma_hw.c"
|
|
#include "channel_hw.c"
|
|
#include "debug_hw.c"
|
|
#include "intr_general_hw.c"
|
|
#include "intr_hw.c"
|
|
#include "syncpt_hw.c"
|
|
|
|
#include "../dev.h"
|
|
|
|
int host1x09_init(struct host1x *host)
|
|
{
|
|
host->channel_op = &host1x_channel_ops;
|
|
host->cdma_op = &host1x_cdma_ops;
|
|
host->cdma_pb_op = &host1x_pushbuffer_ops;
|
|
host->syncpt_op = &host1x_syncpt_ops;
|
|
host->intr_general_op = &host1x_intr_general_ops;
|
|
host->intr_op = &host1x_intr_ops;
|
|
host->debug_op = &host1x_debug_ops;
|
|
|
|
return 0;
|
|
}
|