mirror of
https://github.com/FunKey-Project/FunKey-GPIO-Mapping.git
synced 2025-12-12 17:58:54 +01:00
115 lines
3.7 KiB
C
Executable File
115 lines
3.7 KiB
C
Executable File
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <sys/select.h>
|
|
#include <linux/input.h>
|
|
#include "read_conf_file.h"
|
|
#include <assert.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/i2c-dev.h>
|
|
#include "smbus.h"
|
|
#include "driver_axp209.h"
|
|
|
|
/****************************************************************
|
|
* Defines
|
|
****************************************************************/
|
|
#define DEBUG_AXP209_PRINTF (0)
|
|
|
|
#if (DEBUG_AXP209_PRINTF)
|
|
#define DEBUG_PRINTF(...) printf(__VA_ARGS__);
|
|
#else
|
|
#define DEBUG_PRINTF(...)
|
|
#endif
|
|
|
|
/****************************************************************
|
|
* Static variables
|
|
****************************************************************/
|
|
static int fd_axp209;
|
|
static char i2c0_sysfs_filename[] = "/dev/i2c-0";
|
|
|
|
/****************************************************************
|
|
* Static functions
|
|
****************************************************************/
|
|
|
|
/****************************************************************
|
|
* Public functions
|
|
****************************************************************/
|
|
bool axp209_init(void) {
|
|
int err;
|
|
|
|
/* Open i2c file interface */
|
|
if ((fd_axp209 = open(i2c0_sysfs_filename,O_RDWR)) < 0) {
|
|
printf("In axp209_init - Failed to open the I2C bus %s", i2c0_sysfs_filename);
|
|
// ERROR HANDLING; you can check errno to see what went wrong
|
|
return false;
|
|
}
|
|
|
|
/* Acquire AXP209 bus */
|
|
if (ioctl(fd_axp209, I2C_SLAVE, AXP209_I2C_ADDR) < 0) {
|
|
printf("In axp209_init - Failed to acquire bus access and/or talk to slave, trying to force it\n");
|
|
// ERROR HANDLING; you can check errno to see what went wrong
|
|
if (ioctl(fd_axp209, I2C_SLAVE_FORCE, AXP209_I2C_ADDR) < 0) {
|
|
printf("In axp209_init - Failed to acquire FORCED bus access and/or talk to slave.\n");
|
|
// ERROR HANDLING; you can check errno to see what went wrong
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/* Set N_OE Shutdown delay to 3S*/
|
|
err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_REG_32H, 0x47);
|
|
if(err < 0){
|
|
printf("ERROR Setting AXP209 N_OE Shutdown delay to 3S\n");
|
|
}
|
|
|
|
/* Enable only chosen interrupts (PEK short and long presses)*/
|
|
/*err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_INTERRUPT_BANK_1_ENABLE, 0x00);
|
|
if(err < 0){
|
|
printf("ERROR initializing interrupts 1 for AXP209\n");
|
|
}
|
|
err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_INTERRUPT_BANK_2_ENABLE, 0x00);
|
|
if(err < 0){
|
|
printf("ERROR initializing interrupts 2 for AXP209\n");
|
|
}*/
|
|
err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_INTERRUPT_BANK_3_ENABLE, 0x03);
|
|
if(err < 0){
|
|
printf("ERROR initializing interrupts 3 for AXP209\n");
|
|
}
|
|
/*err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_INTERRUPT_BANK_4_ENABLE, 0x00);
|
|
if(err < 0){
|
|
printf("ERROR initializing interrupts 4 for AXP209\n");
|
|
}
|
|
err = i2c_smbus_write_byte_data(fd_axp209 , AXP209_INTERRUPT_BANK_5_ENABLE, 0x00);
|
|
if(err < 0){
|
|
printf("ERROR initializing interrupts 5 for AXP209\n");
|
|
}*/
|
|
|
|
return true;
|
|
}
|
|
|
|
bool axp209_deinit(void) {
|
|
// Close I2C open interface
|
|
close(fd_axp209);
|
|
return true;
|
|
}
|
|
|
|
int axp209_read_interrupt_bank_3(void){
|
|
int val = i2c_smbus_read_byte_data ( fd_axp209 , AXP209_INTERRUPT_BANK_3_STATUS );
|
|
if(val < 0){
|
|
return val;
|
|
}
|
|
|
|
// Clear interrupts
|
|
int err = i2c_smbus_write_byte_data( fd_axp209 ,AXP209_INTERRUPT_BANK_3_STATUS, 0xFF );
|
|
if(err < 0){
|
|
return err;
|
|
}
|
|
|
|
DEBUG_PRINTF("READ AXP209_INTERRUPT_BANK_3_STATUS: 0x%02X\n",val);
|
|
return 0xFF & val;
|
|
}
|