Path: blob/master/arch/frv/include/asm/busctl-regs.h
15118 views
/* busctl-regs.h: FR400-series CPU bus controller registers1*2* Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public License7* as published by the Free Software Foundation; either version8* 2 of the License, or (at your option) any later version.9*/1011#ifndef _ASM_BUSCTL_REGS_H12#define _ASM_BUSCTL_REGS_H1314/* bus controller registers */15#define __get_LGCR() ({ *(volatile unsigned long *)(0xfe000010); })16#define __get_LMAICR() ({ *(volatile unsigned long *)(0xfe000030); })17#define __get_LEMBR() ({ *(volatile unsigned long *)(0xfe000040); })18#define __get_LEMAM() ({ *(volatile unsigned long *)(0xfe000048); })19#define __get_LCR(R) ({ *(volatile unsigned long *)(0xfe000100 + 8*(R)); })20#define __get_LSBR(R) ({ *(volatile unsigned long *)(0xfe000c00 + 8*(R)); })21#define __get_LSAM(R) ({ *(volatile unsigned long *)(0xfe000d00 + 8*(R)); })2223#define __set_LGCR(V) do { *(volatile unsigned long *)(0xfe000010) = (V); } while(0)24#define __set_LMAICR(V) do { *(volatile unsigned long *)(0xfe000030) = (V); } while(0)25#define __set_LEMBR(V) do { *(volatile unsigned long *)(0xfe000040) = (V); } while(0)26#define __set_LEMAM(V) do { *(volatile unsigned long *)(0xfe000048) = (V); } while(0)27#define __set_LCR(R,V) do { *(volatile unsigned long *)(0xfe000100 + 8*(R)) = (V); } while(0)28#define __set_LSBR(R,V) do { *(volatile unsigned long *)(0xfe000c00 + 8*(R)) = (V); } while(0)29#define __set_LSAM(R,V) do { *(volatile unsigned long *)(0xfe000d00 + 8*(R)) = (V); } while(0)3031/* FR401 SDRAM controller registers */32#define __get_DBR(R) ({ *(volatile unsigned long *)(0xfe000e00 + 8*(R)); })33#define __get_DAM(R) ({ *(volatile unsigned long *)(0xfe000f00 + 8*(R)); })3435/* FR551 SDRAM controller registers */36#define __get_DARS(R) ({ *(volatile unsigned long *)(0xfeff0100 + 8*(R)); })37#define __get_DAMK(R) ({ *(volatile unsigned long *)(0xfeff0110 + 8*(R)); })383940#endif /* _ASM_BUSCTL_REGS_H */414243