mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
Host1x general interrupts include actmon-related interrupts, axi timeout interrupts, and illegal access interrupts. This change enables actmon-related interrupts only. Bug 3788919 Signed-off-by: Johnny Liu <johnliu@nvidia.com> Change-Id: Iea1f1622a11afa72f70f8d10efebd857a51cc4e2 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2889825 Reviewed-by: Mikko Perttunen <mperttunen@nvidia.com> Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
36 lines
791 B
C
36 lines
791 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Host1x init for Tegra234 SoCs
|
|
*
|
|
* Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All Rights Reserved.
|
|
*/
|
|
|
|
/* include hw specification */
|
|
#include "host1x08.h"
|
|
#include "host1x08_hardware.h"
|
|
|
|
/* include code */
|
|
#define HOST1X_HW 8
|
|
|
|
#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 host1x08_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;
|
|
}
|