// SPDX-License-Identifier: GPL-2.0-only1/*2* Host1x init for T20 and T30 Architecture Chips3*4* Copyright (c) 2011-2013, NVIDIA Corporation.5*/67/* include hw specification */8#include "host1x01.h"9#include "host1x01_hardware.h"1011/* include code */12#define HOST1X_HW 11314#include "cdma_hw.c"15#include "channel_hw.c"16#include "debug_hw.c"17#include "intr_hw.c"18#include "syncpt_hw.c"1920#include "../dev.h"2122int host1x01_init(struct host1x *host)23{24host->channel_op = &host1x_channel_ops;25host->cdma_op = &host1x_cdma_ops;26host->cdma_pb_op = &host1x_pushbuffer_ops;27host->syncpt_op = &host1x_syncpt_ops;28host->intr_op = &host1x_intr_ops;29host->debug_op = &host1x_debug_ops;3031return 0;32}333435