/* * linux/drivers/acorn/char/pcf8583.c * * Copyright (C) 2000 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Driver for PCF8583 RTC & RAM chip */ #include #include #include #include #include #include #include #include #include "pcf8583.h" static struct i2c_driver pcf8583_driver; static unsigned short ignore[] = { I2C_CLIENT_END }; static unsigned short normal_addr[] = { 0x50, I2C_CLIENT_END }; static unsigned short *forces[] = { NULL }; static struct i2c_client_address_data addr_data = { .normal_i2c = normal_addr, .probe = ignore, .ignore = ignore, .forces = forces, }; #define set_ctrl(x, v) i2c_set_clientdata(x, (void *)(unsigned int)(v)) #define get_ctrl(x) ((unsigned int)i2c_get_clientdata(x)) static int pcf8583_attach(struct i2c_adapter *adap, int addr, int kind) { struct i2c_client *c; unsigned char buf[1], ad[1] = { 0 }; struct i2c_msg msgs[2] = { { .addr = addr, .flags = 0, .len = 1, .buf = ad, }, { .addr = addr, .flags = I2C_M_RD, .len = 1, .buf = buf, } }; c = kmalloc(sizeof(*c), GFP_KERNEL); if (!c) return -ENOMEM; memset(c, 0, sizeof(*c)); c->addr = addr; c->adapter = adap; c->driver = &pcf8583_driver; if (i2c_transfer(c->adapter, msgs, 2) == 2) set_ctrl(c, buf[0]); return i2c_attach_client(c); } static int pcf8583_probe(struct i2c_adapter *adap) { return i2c_probe(adap, &addr_data, pcf8583_attach); } static int pcf8583_detach(struct i2c_client *client) { i2c_detach_client(client); kfree(client); return 0; } static int pcf8583_get_datetime(struct i2c_client *client, struct rtc_tm *dt) { unsigned char buf[8], addr[1] = { 1 }; struct i2c_msg msgs[2] = { { .addr = client->addr, .flags = 0, .len = 1, .buf = addr, }, { .addr = client->addr, .flags = I2C_M_RD, .len = 6, .buf = buf, } }; int ret = -EIO; memset(buf, 0, sizeof(buf)); ret = i2c_transfer(client->adapter, msgs, 2); if (ret == 2) { dt->year_off = buf[4] >> 6; dt->wday = buf[5] >> 5; buf[4] &= 0x3f; buf[5] &= 0x1f; dt->cs = BCD_TO_BIN(buf[0]); dt->secs = BCD_TO_BIN(buf[1]); dt->mins = BCD_TO_BIN(buf[2]); dt->hours = BCD_TO_BIN(buf[3]); dt->mday = BCD_TO_BIN(buf[4]); dt->mon = BCD_TO_BIN(buf[5]); ret = 0; } return ret; } static int pcf8583_set_datetime(struct i2c_client *client, struct rtc_tm *dt, int datetoo) { unsigned char buf[8]; int ret, len = 6; buf[0] = 0; buf[1] = get_ctrl(client) | 0x80; buf[2] = BIN_TO_BCD(dt->cs); buf[3] = BIN_TO_BCD(dt->secs); buf[4] = BIN_TO_BCD(dt->mins); buf[5] = BIN_TO_BCD(dt->hours); if (datetoo) { len = 8; buf[6] = BIN_TO_BCD(dt->mday) | (dt->year_off << 6); buf[7] = BIN_TO_BCD(dt->mon) | (dt->wday << 5); } ret = i2c_master_send(client, (char *)buf, len); if (ret == len) ret = 0; buf[1] = get_ctrl(client); i2c_master_send(client, (char *)buf, 2); return ret; } static int pcf8583_get_ctrl(struct i2c_client *client, unsigned char *ctrl) { *ctrl = get_ctrl(client); return 0; } static int pcf8583_set_ctrl(struct i2c_client *client, unsigned char *ctrl) { unsigned char buf[2]; buf[0] = 0; buf[1] = *ctrl; set_ctrl(client, *ctrl); return i2c_master_send(client, (char *)buf, 2); } static int pcf8583_read_mem(struct i2c_client *client, struct mem *mem) { unsigned char addr[1]; struct i2c_msg msgs[2] = { { .addr = client->addr, .flags = 0, .len = 1, .buf = addr, }, { .addr = client->addr, .flags = I2C_M_RD, .len = mem->nr, .buf = mem->data, } }; if (mem->loc < 8) return -EINVAL; addr[0] = mem->loc; return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO; } static int pcf8583_write_mem(struct i2c_client *client, struct mem *mem) { unsigned char addr[1]; struct i2c_msg msgs[2] = { { .addr = client->addr, .flags = 0, .len = 1, .buf = addr, }, { .addr = client->addr, .flags = I2C_M_NOSTART, .len = mem->nr, .buf = mem->data, } }; if (mem->loc < 8) return -EINVAL; addr[0] = mem->loc; return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO; } static int pcf8583_command(struct i2c_client *client, unsigned int cmd, void *arg) { switch (cmd) { case RTC_GETDATETIME: return pcf8583_get_datetime(client, arg); case RTC_SETTIME: return pcf8583_set_datetime(client, arg, 0); case RTC_SETDATETIME: return pcf8583_set_datetime(client, arg, 1); case RTC_GETCTRL: return pcf8583_get_ctrl(client, arg); case RTC_SETCTRL: return pcf8583_set_ctrl(client, arg); case MEM_READ: return pcf8583_read_mem(client, arg); case MEM_WRITE: return pcf8583_write_mem(client, arg); default: return -EINVAL; } } static struct i2c_driver pcf8583_driver = { .driver = { .name = "PCF8583", }, .id = I2C_DRIVERID_PCF8583, .attach_adapter = pcf8583_probe, .detach_client = pcf8583_detach, .command = pcf8583_command }; static __init int pcf8583_init(void) { return i2c_add_driver(&pcf8583_driver); } static __exit void pcf8583_exit(void) { i2c_del_driver(&pcf8583_driver); } module_init(pcf8583_init); module_exit(pcf8583_exit); MODULE_AUTHOR("Russell King"); MODULE_DESCRIPTION("PCF8583 I2C RTC driver"); MODULE_LICENSE("GPL");