Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ac7643e4
Commit
ac7643e4
authored
Sep 15, 2008
by
Kevin Hilman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: DaVinci: Update IO address pointer typechecking
Signed-off-by:
Kevin Hilman
<
khilman@deeprootsystems.com
>
parent
45e9c0de
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
31 deletions
+14
-31
arch/arm/mach-davinci/board-evm.c
arch/arm/mach-davinci/board-evm.c
+1
-1
arch/arm/mach-davinci/include/mach/io.h
arch/arm/mach-davinci/include/mach/io.h
+13
-30
No files found.
arch/arm/mach-davinci/board-evm.c
View file @
ac7643e4
...
@@ -124,7 +124,7 @@ static __init void davinci_evm_irq_init(void)
...
@@ -124,7 +124,7 @@ static __init void davinci_evm_irq_init(void)
MACHINE_START
(
DAVINCI_EVM
,
"DaVinci EVM"
)
MACHINE_START
(
DAVINCI_EVM
,
"DaVinci EVM"
)
/* Maintainer: MontaVista Software <source@mvista.com> */
/* Maintainer: MontaVista Software <source@mvista.com> */
.
phys_io
=
IO_PHYS
,
.
phys_io
=
IO_PHYS
,
.
io_pg_offst
=
(
io_p2v
(
IO_PHYS
)
>>
18
)
&
0xfffc
,
.
io_pg_offst
=
(
__IO_ADDRESS
(
IO_PHYS
)
>>
18
)
&
0xfffc
,
.
boot_params
=
(
DAVINCI_DDR_BASE
+
0x100
),
.
boot_params
=
(
DAVINCI_DDR_BASE
+
0x100
),
.
map_io
=
davinci_evm_map_io
,
.
map_io
=
davinci_evm_map_io
,
.
init_irq
=
davinci_evm_irq_init
,
.
init_irq
=
davinci_evm_irq_init
,
...
...
arch/arm/mach-davinci/include/mach/io.h
View file @
ac7643e4
...
@@ -22,9 +22,8 @@
...
@@ -22,9 +22,8 @@
#define IO_OFFSET 0xfd000000
/* Virtual IO = 0xfec00000 */
#define IO_OFFSET 0xfd000000
/* Virtual IO = 0xfec00000 */
#define IO_SIZE 0x00400000
#define IO_SIZE 0x00400000
#define IO_VIRT (IO_PHYS + IO_OFFSET)
#define IO_VIRT (IO_PHYS + IO_OFFSET)
#define io_p2v(pa) ((pa) + IO_OFFSET)
#define io_v2p(va) ((va) - IO_OFFSET)
#define io_v2p(va) ((va) - IO_OFFSET)
#define
IO_ADDRESS(x) io_p2v(x
)
#define
__IO_ADDRESS(x) ((x) + IO_OFFSET
)
/*
/*
* We don't actually have real ISA nor PCI buses, but there is so many
* We don't actually have real ISA nor PCI buses, but there is so many
...
@@ -35,7 +34,12 @@
...
@@ -35,7 +34,12 @@
#define __mem_pci(a) (a)
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)
#define __mem_isa(a) (a)
#ifndef __ASSEMBLER__
#define IO_ADDRESS(pa) IOMEM(__IO_ADDRESS(pa))
#ifdef __ASSEMBLER__
#define IOMEM(x) x
#else
#define IOMEM(x) ((void __force __iomem *)(x))
/*
/*
* Functions to access the DaVinci IO region
* Functions to access the DaVinci IO region
...
@@ -46,34 +50,13 @@
...
@@ -46,34 +50,13 @@
* - DO NOT use hardcoded virtual addresses to allow changing the
* - DO NOT use hardcoded virtual addresses to allow changing the
* IO address space again if needed
* IO address space again if needed
*/
*/
#define davinci_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a))
#define davinci_readb(a) __raw_readb(IO_ADDRESS(a))
#define davinci_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a))
#define davinci_readw(a) __raw_readw(IO_ADDRESS(a))
#define davinci_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a))
#define davinci_readl(a) __raw_readl(IO_ADDRESS(a))
#define davinci_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v))
#define davinci_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v))
#define davinci_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v))
/* 16 bit uses LDRH/STRH, base +/- offset_8 */
typedef
struct
{
volatile
u16
offset
[
256
];
}
__regbase16
;
#define __REGV16(vaddr) ((__regbase16 *)((vaddr)&~0xff)) \
->offset[((vaddr)&0xff)>>1]
#define __REG16(paddr) __REGV16(io_p2v(paddr))
/* 8/32 bit uses LDR/STR, base +/- offset_12 */
typedef
struct
{
volatile
u8
offset
[
4096
];
}
__regbase8
;
#define __REGV8(vaddr) ((__regbase8 *)((vaddr)&~4095)) \
->offset[((vaddr)&4095)>>0]
#define __REG8(paddr) __REGV8(io_p2v(paddr))
typedef
struct
{
volatile
u32
offset
[
4096
];
}
__regbase32
;
#define __REGV32(vaddr) ((__regbase32 *)((vaddr)&~4095)) \
->offset[((vaddr)&4095)>>2]
#define __REG(paddr) __REGV32(io_p2v(paddr))
#else
#define __REG(x) (*((volatile unsigned long *)io_p2v(x)))
#define davinci_writeb(v, a) __raw_writeb(v, IO_ADDRESS(a))
#define davinci_writew(v, a) __raw_writew(v, IO_ADDRESS(a))
#define davinci_writel(v, a) __raw_writel(v, IO_ADDRESS(a))
#endif
/* __ASSEMBLER__ */
#endif
/* __ASSEMBLER__ */
#endif
/* __ASM_ARCH_IO_H */
#endif
/* __ASM_ARCH_IO_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment