summaryrefslogtreecommitdiff
path: root/cpukit/dev/i2c (follow)
AgeCommit message (Collapse)Author
2018-11-06Correct minor spelling and grammar errorsZenon
This work was performed as a GCI 2018 task.
2018-02-02i2c: Use self-contained mutexSebastian Huber
Update #2843.
2018-02-01Xilinx AXI I2C driver IP race condition causes clock glitch.Chris Johns
Setting the PIRQ to 0 before reading the data produces a short clock pulse. Moving the write to after reading the data fixes the issue. Close #3173
2017-10-02i2c: Add temperature sensor LM75A driverSebastian Huber
Close #3163.
2017-10-02i2c: Fix EEPROM driver program timeout handlingSebastian Huber
The RTEMS_MILLISECONDS_TO_TICKS() macro doesn't round up. Do not use it to calculate the program timeout in ticks. Check program done condition after the timeout check to account for pre-emptions. Update #3162.
2017-10-02i2c: Send MSB of address first for EEPROMsSebastian Huber
Update #3161.
2017-08-25Include missing <string.h>Sebastian Huber
Update #2133.
2017-08-22dev/i2c: Fix integer typeSebastian Huber
Update #3082.
2017-08-20dev/i2c: Add I2C device support for FPGA Slave, LM25066A, TMP112, ADS1113, ↵Chris Johns
ADS1114 and ADS1115 Closes #3101.
2017-08-16dev/i2c: Add Xilinx AXI I2C driver.Chris Johns
This is a generic driver for use with Xilinx AXI I2C controller IP. Closes #3100.
2017-07-14posix/mmap: Add support for file handler and MAP_ANONKevin Kirspel
Added a mmap file handler to struct _rtems_filesystem_file_handlers_r. Updated each file handler object to support the default mmap handler. Updated mmap() to call the mmap handler for MAP_SHARED. Added a mmap file handler for shm Added support for MAP_ANON in mmap(). Updates #2859
2015-07-23i2c: Fix return status of i2c dev read/writeSebastian Huber
2015-01-27IMFS: Replace node union with individual structSebastian Huber
This reduces the average node size. Add and use IMFS_GENERIC_INITIALIZER().
2014-11-26i2c: Do not close file descriptor 0 if open failsSebastian Huber
2014-11-26i2c: Avoid undefined right shift operationSebastian Huber
2014-11-25cpukit/dev/i2c/i2c-dev.c: Fix leak on error pathJoel Sherrill
Coverity ID 1255520. fd was not closed on error path.
2014-11-24i2c: Fix endian issueSebastian Huber
2014-11-20Add NXP PCA9548A 8-channel switch I2C driverSebastian Huber
2014-11-20Add NXP PCA9535 16-bit GPIO I2C driverSebastian Huber
2014-11-20Add generic EEPROM I2C device driverSebastian Huber
2014-11-20Add I2C driver frameworkSebastian Huber
This I2C driver framework has some major differences compared to libi2c. * It is compatible to the Linux I2C user-space API. * It uses generic IMFS nodes and thus reduces the levels of indirection. * The drivers don't have to mess around with minor numbers to get their state information. * No arbitrary bus controller model is assumed. The main task of an I2C bus controller driver is to process I2C messages. How this is done is private to the driver. * Scatter/gather operations are supported (I2C_M_NOSTART).