Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 123635
b: refs/heads/master
c: 877d1f3
h: refs/heads/master
i:
  123633: 480772e
  123631: 0496594
v: v3
  • Loading branch information
Catalin Marinas committed Nov 10, 2008
1 parent df4e69b commit 35a2b2f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2c0aec814d259e35366a0a22747f8c9d5e39ee9c
refs/heads/master: 877d1f338912c1bf49a026eeca1d411755efece5
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-realview/include/mach/debug-macro.S
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
mrc p15, 0, \rx, c1, c0
tst \rx, #1 @ MMU enabled?
moveq \rx, #0x10000000
movne \rx, #0xf0000000 @ virtual base
movne \rx, #0xfb000000 @ virtual base
orr \rx, \rx, #DEBUG_LL_UART_OFFSET
.endm

Expand Down
9 changes: 8 additions & 1 deletion trunk/arch/arm/mach-realview/include/mach/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@
#include <asm/sizes.h>

/* macro to get at IO space when running virtually */
#define IO_ADDRESS(x) (((x) & 0x0fffffff) + 0xf0000000)
/*
* Statically mapped addresses:
*
* 10xx xxxx -> fbxx xxxx
* 1exx xxxx -> fdxx xxxx
* 1fxx xxxx -> fexx xxxx
*/
#define IO_ADDRESS(x) (((x) & 0x03ffffff) + 0xfb000000)
#define __io_address(n) __io(IO_ADDRESS(n))

#endif
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-realview/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define VMALLOC_END (PAGE_OFFSET + 0x18000000)
#define VMALLOC_END 0xf8000000

0 comments on commit 35a2b2f

Please sign in to comment.