Home | History | Annotate | Line # | Download | only in imx
imx31var.h revision 1.2
      1 /*	$NetBSD: imx31var.h,v 1.2 2008/04/27 18:58:44 matt Exp $	*/
      2 
      3 #ifndef _ARM_IMX_IMX31VAR_H
      4 #define _ARM_IMX_IMX31VAR_H
      5 
      6 extern struct bus_space imx31_bs_tag;
      7 
      8 struct aips_attach_args {
      9 	const char	*aipsa_name;
     10 	bus_space_tag_t	aipsa_memt;
     11 	bus_addr_t	aipsa_addr;
     12 	bus_size_t	aipsa_size;
     13 	int		aipsa_intr;
     14 };
     15 
     16 struct ahb_attach_args {
     17 	const char	*ahba_name;
     18 	bus_space_tag_t	ahba_memt;
     19 	bus_dma_tag_t	ahba_dmat;
     20 	bus_addr_t	ahba_addr;
     21 	bus_size_t	ahba_size;
     22 	int		ahba_intr;
     23 	int		ahba_irqbase;
     24 };
     25 
     26 #endif	/* _ARM_IMX_IMX31VAR_H */
     27