1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-06 12:11:43 +00:00
Atmosphere/exosphere/bpmpfw/src/i2c.c

89 lines
2.4 KiB
C
Raw Normal View History

2018-02-23 12:13:18 +00:00
#include "i2c.h"
#include "timer.h"
/* Prototypes for internal commands. */
void i2c_load_config(void);
int i2c_write(unsigned int device, uint32_t val, unsigned int num_bytes);
int i2c_send_byte_command(unsigned int device, unsigned char reg, unsigned char b);
/* Load hardware config for I2C4. */
2018-02-23 12:13:18 +00:00
void i2c_load_config(void) {
/* Set MSTR_CONFIG_LOAD, TIMEOUT_CONFIG_LOAD, undocumented bit. */
I2C_I2C_CONFIG_LOAD_0 = 0x25;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Wait a bit for master config to be loaded. */
for (unsigned int i = 0; i < 20; i++) {
timer_wait(1);
if (!(I2C_I2C_CONFIG_LOAD_0 & 1)) {
break;
}
}
}
/* Initialize I2C4. */
2018-02-23 12:13:18 +00:00
void i2c_init(void) {
/* Setup divisor, and clear the bus. */
I2C_I2C_CLK_DIVISOR_REGISTER_0 = 0x50001;
I2C_I2C_BUS_CLEAR_CONFIG_0 = 0x90003;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Load hardware configuration. */
i2c_load_config();
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Wait a while until BUS_CLEAR_DONE is set. */
for (unsigned int i = 0; i < 10; i++) {
timer_wait(20000);
if (I2C_INTERRUPT_STATUS_REGISTER_0 & 0x800) {
break;
}
}
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Read the BUS_CLEAR_STATUS. Result doesn't matter. */
2018-02-23 12:56:23 +00:00
I2C_I2C_BUS_CLEAR_STATUS_0;
2018-02-23 12:13:18 +00:00
/* Read and set the Interrupt Status. */
uint32_t int_status = I2C_INTERRUPT_STATUS_REGISTER_0;
I2C_INTERRUPT_STATUS_REGISTER_0 = int_status;
}
/* Writes a value to an i2c device. */
2018-02-23 12:13:18 +00:00
int i2c_write(unsigned int device, uint32_t val, unsigned int num_bytes) {
if (num_bytes > 4) {
return 0;
}
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Set device for 7-bit mode. */
I2C_I2C_CMD_ADDR0_0 = device << 1;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Load in data to write. */
I2C_I2C_CMD_DATA1_0 = val;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Set config with LENGTH = num_bytes, NEW_MASTER_FSM, DEBOUNCE_CNT = 4T. */
I2C_I2C_CNFG_0 = ((num_bytes << 1) - 2) | 0x2800;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
i2c_load_config();
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Config |= SEND; */
I2C_I2C_CNFG_0 |= 0x200;
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
while (I2C_I2C_STATUS_0 & 0x100) {
/* Wait until not busy. */
}
2018-02-23 12:56:23 +00:00
2018-02-23 12:13:18 +00:00
/* Return CMD1_STAT == SL1_XFER_SUCCESSFUL. */
2018-02-24 06:03:13 +00:00
return (I2C_I2C_STATUS_0 & 0xF) == 0;
2018-02-23 12:13:18 +00:00
}
/* Writes a byte val to reg for given device. */
2018-02-23 12:13:18 +00:00
int i2c_send_byte_command(unsigned int device, unsigned char reg, unsigned char b) {
uint32_t val = (reg) | (b << 8);
/* Write 1 byte (reg) + 1 byte (value) */
return i2c_write(device, val, 2);
}
/* Actually reset device 27. This might turn off the screen? */
2018-02-23 12:13:18 +00:00
int i2c_send_reset_cmd(void) {
/* Write 00 to Device 27 Reg 00. */
return i2c_send_byte_command(27, 0, 0);
2018-02-23 12:56:23 +00:00
}