* problem with REG32() in IXP425
@ 2006-04-04 11:19 sumanth
0 siblings, 0 replies; only message in thread
From: sumanth @ 2006-04-04 11:19 UTC (permalink / raw)
To: ecos-devel
Hi,
I am sumanth, i am porting ecos to ixp 425 evaluation board of
mine, but i am getting problem in the hal_interrupt_configure, where we
have address calculation routine
*IXP425_GPIT1R = (*IXP425_GPIT1R & ~(7 << shift)) | (ival << shift);
*IXP425_GPISR |= (1 << vector);
where *IXP425_GPIT1R calls REG32 and it calculates the base address and the
actual bytes from base address which should happen actually, and call the
routine
#define REG32(a,b) ((volatile unsigned int *)((a)+(b)))
but in our case it is calling the routine
#define REG32(a,b) (b)
so we are only getting the no of bytes move from base, is there any problem
with definition of _ASSEMBLER_
I am giving the snap shot of the code
xscale/cores/current/include/hal_xscale.h
#ifdef __ASSEMBLER__
#define REG8(a,b) (b)
#define REG16(a,b) (b)
#define REG32(a,b) (b)
#else /* __ASSEMBLER__ */
#define REG8(a,b) ((volatile unsigned char *)((a)+(b)))
#define REG16(a,b) ((volatile unsigned short *)((a)+(b)))
#define REG32(a,b) ((volatile unsigned int *)((a)+(b)))
extern void hal_xscale_core_init(void);
#endif /* __ASSEMBLER__ */
any pointers in this case are very helpful, and any one who worked on the
ixp425 processor can help me by sharing their problem situations and how
could they resolve them
Thanks & regards,
Sumanth.
--
View this message in context: http://www.nabble.com/problem-with-REG32%28%29-in-IXP425-t1392469.html#a3742562
Sent from the Sourceware - ecos-devel forum at Nabble.com.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-04-04 11:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-04-04 11:19 problem with REG32() in IXP425 sumanth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).