arm_mhu.c (762f99f4f3cb41a775b5157dd761217beba65873) arm_mhu.c (e9803aac5097ac74186b074d3176318fd10ec98c)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013-2015 Fujitsu Semiconductor Ltd.
4 * Copyright (C) 2015 Linaro Ltd.
5 * Author: Jassi Brar <jaswinder.singh@linaro.org>
6 */
7
8#include <linux/amba/bus.h>
9#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/interrupt.h>
12#include <linux/io.h>
13#include <linux/mailbox_controller.h>
14#include <linux/module.h>
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013-2015 Fujitsu Semiconductor Ltd.
4 * Copyright (C) 2015 Linaro Ltd.
5 * Author: Jassi Brar <jaswinder.singh@linaro.org>
6 */
7
8#include <linux/amba/bus.h>
9#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/interrupt.h>
12#include <linux/io.h>
13#include <linux/mailbox_controller.h>
14#include <linux/module.h>
15#include <linux/of.h>
15
16#define INTR_STAT_OFS 0x0
17#define INTR_SET_OFS 0x8
18#define INTR_CLR_OFS 0x10
19
20#define MHU_LP_OFFSET 0x0
21#define MHU_HP_OFFSET 0x20
22#define MHU_SEC_OFFSET 0x200

--- 153 unchanged lines hidden ---
16
17#define INTR_STAT_OFS 0x0
18#define INTR_SET_OFS 0x8
19#define INTR_CLR_OFS 0x10
20
21#define MHU_LP_OFFSET 0x0
22#define MHU_HP_OFFSET 0x20
23#define MHU_SEC_OFFSET 0x200

--- 153 unchanged lines hidden ---