Blame view

include/ioports.h 1.88 KB
0f89ba432   wdenk   Initial revision
1
  /*
72281c5c4   Christophe Leroy   powerpc: Remove 8...
2
   * definitions for MPC8xxx I/O Ports
0f89ba432   wdenk   Initial revision
3
4
5
6
7
8
   *
   * Murray.Jensen@cmst.csiro.au, 20-Oct-00
   */
  
  /*
   * this structure mirrors the layout of the five port registers in
72281c5c4   Christophe Leroy   powerpc: Remove 8...
9
   * the internal memory map
0f89ba432   wdenk   Initial revision
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   */
  typedef struct {
      unsigned int pdir;		/* Port Data Direction Register (35-3) */
      unsigned int ppar;		/* Port Pin Assignment Register (35-4) */
      unsigned int psor;		/* Port Special Options Register (35-5) */
      unsigned int podr;		/* Port Open Drain Register (35-2) */
      unsigned int pdat;		/* Port Data Register (35-3) */
  } ioport_t;
  
  /*
   * this macro calculates the address within the internal
   * memory map (im) of the set of registers for a port (idx)
   *
   * the internal memory map aligns the above structure on
   * a 0x20 byte boundary
   */
9c4c5ae3e   Jon Loeliger   * Patch by Jon Lo...
26
  #ifdef CONFIG_MPC85xx
aafeefbdb   Kumar Gala   Stop using immap_...
27
  #define ioport_addr(im, idx) (ioport_t *)((uint)&(im->im_cpm_iop) + ((idx)*0x20))
42d1f0394   wdenk   * Patches by Xian...
28
  #else
0f89ba432   wdenk   Initial revision
29
  #define ioport_addr(im, idx) (ioport_t *)((uint)&(im)->im_ioport + ((idx)*0x20))
42d1f0394   wdenk   * Patches by Xian...
30
  #endif
0f89ba432   wdenk   Initial revision
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  
  /*
   * this structure provides configuration
   * information for one port pin
   */
  typedef struct {
      unsigned char conf:1;	/* if 1, configure this port */
      unsigned char ppar:1;	/* Port Pin Assignment Register (35-4) */
      unsigned char psor:1;	/* Port Special Options Register (35-2) */
      unsigned char pdir:1;	/* Port Data Direction Register (35-3) */
      unsigned char podr:1;	/* Port Open Drain Register (35-2) */
      unsigned char pdat:1;	/* Port Data Register (35-2) */
  } iop_conf_t;
  
  /*
   * a table that contains configuration information for all 32 pins
0f89ba432   wdenk   Initial revision
47
48
49
50
51
52
   *
   * NOTE: in the second dimension of this table, index 0 refers to pin 31
   * and index 31 refers to pin 0. this made the code in the table look more
   * like the table in the 8260UM (and in the hymod manuals).
   */
  extern const iop_conf_t iop_conf_tab[4][32];
7737d5c65   Dave Liu   mpc83xx: add QE e...
53
54
55
56
57
58
59
60
61
62
  
  typedef struct {
  	unsigned char	port;
  	unsigned char	pin;
  	int		dir;
  	int		open_drain;
  	int		assign;
  } qe_iop_conf_t;
  
  #define QE_IOP_TAB_END	(-1)