Home | History | Annotate | Download | only in mach
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 /*
      3  * Copyright (C) 2014 Marek Vasut <marex (at) denx.de>
      4  */
      5 
      6 #ifndef __SOCFPGA_SCU_H__
      7 #define __SOCFPGA_SCU_H__
      8 
      9 struct scu_registers {
     10 	u32	ctrl;			/* 0x00 */
     11 	u32	cfg;
     12 	u32	cpsr;
     13 	u32	iassr;
     14 	u32	_pad_0x10_0x3c[12];	/* 0x10 */
     15 	u32	fsar;			/* 0x40 */
     16 	u32	fear;
     17 	u32	_pad_0x48_0x4c[2];
     18 	u32	acr;			/* 0x50 */
     19 	u32	sacr;
     20 };
     21 
     22 #endif	/* __SOCFPGA_SCU_H__ */
     23