mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
dcd7c906d0
This header file should not be included in other header files. Remove it from each one and use a forward declaration instead. Signed-off-by: Simon Glass <sjg@chromium.org>
21 lines
493 B
C
21 lines
493 B
C
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Microsemi Jaguar2 Switch driver
|
|
*
|
|
* Copyright (c) 2018 Microsemi Corporation
|
|
*/
|
|
|
|
#ifndef _MSCC_JR2_H_
|
|
#define _MSCC_JR2_H_
|
|
|
|
/*
|
|
* Target offset base(s)
|
|
*/
|
|
#define MSCC_IO_ORIGIN1_OFFSET 0x70000000
|
|
#define MSCC_IO_ORIGIN1_SIZE 0x00200000
|
|
#define MSCC_IO_ORIGIN2_OFFSET 0x71000000
|
|
#define MSCC_IO_ORIGIN2_SIZE 0x01000000
|
|
#define BASE_CFG ((void __iomem *)0x70000000)
|
|
#define BASE_DEVCPU_GCB ((void __iomem *)0x71010000)
|
|
|
|
#endif
|