You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
394 B
18 lines
394 B
/*
|
|
* memory & I/O static mapping definitions for CSR SiRFprimaII
|
|
*
|
|
* Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#ifndef __MACH_PRIMA2_MAP_H__
|
|
#define __MACH_PRIMA2_MAP_H__
|
|
|
|
#include <linux/const.h>
|
|
|
|
#define SIRFSOC_VA_BASE _AC(0xFEC00000, UL)
|
|
|
|
#define SIRFSOC_VA(x) (SIRFSOC_VA_BASE + ((x) & 0x00FFF000))
|
|
|
|
#endif
|
|
|