1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/*
i2c_eeprom.h
Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
This file is part of simavr.
simavr is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
simavr is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with simavr. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __I2C_EEPROM_H___
#define __I2C_EEPROM_H___
#include "sim_irq.h"
/*
* This is a generic i2c eeprom; it can be up to 4096 bytes, and can work
* in two modes :
* 1) ONE slave address, and either one or two bytes sent on i2c to specify
* the byte to read/write.
* So a transaction looks like:
* <i2c address> [<byte offset MSB>] <byte offset LSB> [<data>]
* 2) Multiple slave address to specify the high byte offset value, and one
* byte offset sent
* So a transaction looks like:
* <i2c address; x low bits used as byte offset> <byte offset LSB> [<data>]
*
* these two modes seem to cover many eeproms
*/
typedef struct i2c_eeprom_t {
avr_irq_t * irq; // irq list
uint8_t addr_base;
uint8_t addr_mask;
int verbose;
uint8_t selected; // selected address
int index; // byte index in current transaction
uint16_t reg_addr; // read/write address register
int size; // also implies the address size, one or two byte
uint8_t ee[4096];
} i2c_eeprom_t;
/*
* Initializes an eeprom.
*
* The address is the TWI/i2c address base, for example 0xa0 -- the 7 MSB are
* relevant, the bit zero is always meant as the "read write" bit.
* The "mask" parameter specifies which bits should be matched as a slave;
* if you want to have a peripheral that handle read and write, use '1'; if you
* want to also match several addresses on the bus, specify these bits on the
* mask too.
* Example:
* Address 0xa1 mask 0x00 will match address 0xa0 in READ only
* Address 0xa0 mask 0x01 will match address 0xa0 in read AND write mode
* Address 0xa0 mask 0x03 will match 0xa0 0xa2 in read and write mode
*
* The "data" is optional, data is initialized as 0xff like a normal eeprom.
*/
void
i2c_eeprom_init(
struct avr_t * avr,
i2c_eeprom_t * p,
uint8_t addr,
uint8_t mask,
uint8_t * data,
size_t size);
/*
* Attach the eeprom to the AVR's TWI master code,
* pass AVR_IOCTL_TWI_GETIRQ(0) for example as i2c_irq_base
*/
void
i2c_eeprom_attach(
struct avr_t * avr,
i2c_eeprom_t * p,
uint32_t i2c_irq_base );
#endif /* __I2C_EEPROM_H___ */
|