diff options
| author | Wolfgang Denk <wd@denx.de> | 2009-12-15 23:38:34 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-12-15 23:38:34 +0100 | 
| commit | bb3bcfa2426cc6a0aecec7270e3ee67ca843a125 (patch) | |
| tree | 0314e3d8e8d9e4d568a496fca27db33d66e68bb4 /board/davinci/common/misc.h | |
| parent | a200a7c04d89853d2a1395b96d8ca5e3dd754551 (diff) | |
| parent | 4b142febff71eabdb7ddbb125c7b583b24ddc434 (diff) | |
| download | olio-uboot-2014.01-bb3bcfa2426cc6a0aecec7270e3ee67ca843a125.tar.xz olio-uboot-2014.01-bb3bcfa2426cc6a0aecec7270e3ee67ca843a125.zip | |
Merge branch 'next' of ../next
Diffstat (limited to 'board/davinci/common/misc.h')
| -rw-r--r-- | board/davinci/common/misc.h | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/board/davinci/common/misc.h b/board/davinci/common/misc.h index dc3cc4133..f6d8b1bda 100644 --- a/board/davinci/common/misc.h +++ b/board/davinci/common/misc.h @@ -22,8 +22,20 @@  #ifndef __MISC_H  #define __MISC_H +/* pin muxer definitions */ +#define PIN_MUX_NUM_FIELDS	8	/* Per register */ +#define PIN_MUX_FIELD_SIZE	4	/* n in bits */ +#define PIN_MUX_FIELD_MASK	((1 << PIN_MUX_FIELD_SIZE) - 1) + +/* pin definition */ +struct pinmux_config { +	dv_reg		*mux;		/* Address of mux register */ +	unsigned char	value;		/* Value to set in field */ +	unsigned char	field;		/* field number */ +};  int dvevm_read_mac_address(uint8_t *buf);  void dv_configure_mac_address(uint8_t *rom_enetaddr); +int davinci_configure_pin_mux(const struct pinmux_config *pins, int n_pins);  #endif /* __MISC_H */ |