⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gl518sm.c

📁 《linux驱动程序设计从入门到精通》一书中所有的程序代码含驱动和相应的应用程序
💻 C
📖 第 1 页 / 共 2 页
字号:
	return count;}static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp_input1, NULL);static DEVICE_ATTR(temp1_max, S_IWUSR|S_IRUGO, show_temp_max1, set_temp_max1);static DEVICE_ATTR(temp1_max_hyst, S_IWUSR|S_IRUGO,	show_temp_hyst1, set_temp_hyst1);static DEVICE_ATTR(fan1_auto, S_IWUSR|S_IRUGO, show_fan_auto1, set_fan_auto1);static DEVICE_ATTR(fan1_input, S_IRUGO, show_fan_input1, NULL);static DEVICE_ATTR(fan2_input, S_IRUGO, show_fan_input2, NULL);static DEVICE_ATTR(fan1_min, S_IWUSR|S_IRUGO, show_fan_min1, set_fan_min1);static DEVICE_ATTR(fan2_min, S_IWUSR|S_IRUGO, show_fan_min2, set_fan_min2);static DEVICE_ATTR(fan1_div, S_IWUSR|S_IRUGO, show_fan_div1, set_fan_div1);static DEVICE_ATTR(fan2_div, S_IWUSR|S_IRUGO, show_fan_div2, set_fan_div2);static DEVICE_ATTR(in0_input, S_IRUGO, show_in_input0, NULL);static DEVICE_ATTR(in1_input, S_IRUGO, show_in_input1, NULL);static DEVICE_ATTR(in2_input, S_IRUGO, show_in_input2, NULL);static DEVICE_ATTR(in3_input, S_IRUGO, show_in_input3, NULL);static DEVICE_ATTR(in0_min, S_IWUSR|S_IRUGO, show_in_min0, set_in_min0);static DEVICE_ATTR(in1_min, S_IWUSR|S_IRUGO, show_in_min1, set_in_min1);static DEVICE_ATTR(in2_min, S_IWUSR|S_IRUGO, show_in_min2, set_in_min2);static DEVICE_ATTR(in3_min, S_IWUSR|S_IRUGO, show_in_min3, set_in_min3);static DEVICE_ATTR(in0_max, S_IWUSR|S_IRUGO, show_in_max0, set_in_max0);static DEVICE_ATTR(in1_max, S_IWUSR|S_IRUGO, show_in_max1, set_in_max1);static DEVICE_ATTR(in2_max, S_IWUSR|S_IRUGO, show_in_max2, set_in_max2);static DEVICE_ATTR(in3_max, S_IWUSR|S_IRUGO, show_in_max3, set_in_max3);static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);static DEVICE_ATTR(beep_enable, S_IWUSR|S_IRUGO,	show_beep_enable, set_beep_enable);static DEVICE_ATTR(beep_mask, S_IWUSR|S_IRUGO,	show_beep_mask, set_beep_mask);/* * Real code */static int gl518_attach_adapter(struct i2c_adapter *adapter){	if (!(adapter->class & I2C_CLASS_HWMON))		return 0;	return i2c_detect(adapter, &addr_data, gl518_detect);}static int gl518_detect(struct i2c_adapter *adapter, int address, int kind){	int i;	struct i2c_client *new_client;	struct gl518_data *data;	int err = 0;	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |				     I2C_FUNC_SMBUS_WORD_DATA))		goto exit;	/* OK. For now, we presume we have a valid client. We now create the	   client structure, even though we cannot fill it completely yet.	   But it allows us to access gl518_{read,write}_value. */	if (!(data = kmalloc(sizeof(struct gl518_data), GFP_KERNEL))) {		err = -ENOMEM;		goto exit;	}	memset(data, 0, sizeof(struct gl518_data));	new_client = &data->client;	i2c_set_clientdata(new_client, data);	new_client->addr = address;	new_client->adapter = adapter;	new_client->driver = &gl518_driver;	new_client->flags = 0;	/* Now, we do the remaining detection. */	if (kind < 0) {		if ((gl518_read_value(new_client, GL518_REG_CHIP_ID) != 0x80)		 || (gl518_read_value(new_client, GL518_REG_CONF) & 0x80))			goto exit_free;	}	/* Determine the chip type. */	if (kind <= 0) {		i = gl518_read_value(new_client, GL518_REG_REVISION);		if (i == 0x00) {			kind = gl518sm_r00;		} else if (i == 0x80) {			kind = gl518sm_r80;		} else {			if (kind <= 0)				dev_info(&adapter->dev,				    "Ignoring 'force' parameter for unknown "				    "chip at adapter %d, address 0x%02x\n",				    i2c_adapter_id(adapter), address);			goto exit_free;		}	}	/* Fill in the remaining client fields */	strlcpy(new_client->name, "gl518sm", I2C_NAME_SIZE);	new_client->id = gl518_id++;	data->type = kind;	data->valid = 0;	init_MUTEX(&data->update_lock);	/* Tell the I2C layer a new client has arrived */	if ((err = i2c_attach_client(new_client)))		goto exit_free;	/* Initialize the GL518SM chip */	data->alarm_mask = 0xff;	data->voltage_in[0]=data->voltage_in[1]=data->voltage_in[2]=0;	gl518_init_client((struct i2c_client *) new_client);	/* Register sysfs hooks */	device_create_file(&new_client->dev, &dev_attr_in0_input);	device_create_file(&new_client->dev, &dev_attr_in1_input);	device_create_file(&new_client->dev, &dev_attr_in2_input);	device_create_file(&new_client->dev, &dev_attr_in3_input);	device_create_file(&new_client->dev, &dev_attr_in0_min);	device_create_file(&new_client->dev, &dev_attr_in1_min);	device_create_file(&new_client->dev, &dev_attr_in2_min);	device_create_file(&new_client->dev, &dev_attr_in3_min);	device_create_file(&new_client->dev, &dev_attr_in0_max);	device_create_file(&new_client->dev, &dev_attr_in1_max);	device_create_file(&new_client->dev, &dev_attr_in2_max);	device_create_file(&new_client->dev, &dev_attr_in3_max);	device_create_file(&new_client->dev, &dev_attr_fan1_auto);	device_create_file(&new_client->dev, &dev_attr_fan1_input);	device_create_file(&new_client->dev, &dev_attr_fan2_input);	device_create_file(&new_client->dev, &dev_attr_fan1_min);	device_create_file(&new_client->dev, &dev_attr_fan2_min);	device_create_file(&new_client->dev, &dev_attr_fan1_div);	device_create_file(&new_client->dev, &dev_attr_fan2_div);	device_create_file(&new_client->dev, &dev_attr_temp1_input);	device_create_file(&new_client->dev, &dev_attr_temp1_max);	device_create_file(&new_client->dev, &dev_attr_temp1_max_hyst);	device_create_file(&new_client->dev, &dev_attr_alarms);	device_create_file(&new_client->dev, &dev_attr_beep_enable);	device_create_file(&new_client->dev, &dev_attr_beep_mask);	return 0;/* OK, this is not exactly good programming practice, usually. But it is   very code-efficient in this case. */exit_free:	kfree(data);exit:	return err;}/* Called when we have found a new GL518SM.   Note that we preserve D4:NoFan2 and D2:beep_enable. */static void gl518_init_client(struct i2c_client *client){	/* Make sure we leave D7:Reset untouched */	u8 regvalue = gl518_read_value(client, GL518_REG_CONF) & 0x7f;	/* Comparator mode (D3=0), standby mode (D6=0) */	gl518_write_value(client, GL518_REG_CONF, (regvalue &= 0x37));	/* Never interrupts */	gl518_write_value(client, GL518_REG_MASK, 0x00);	/* Clear status register (D5=1), start (D6=1) */	gl518_write_value(client, GL518_REG_CONF, 0x20 | regvalue);	gl518_write_value(client, GL518_REG_CONF, 0x40 | regvalue);}static int gl518_detach_client(struct i2c_client *client){	int err;	if ((err = i2c_detach_client(client))) {		dev_err(&client->dev, "Client deregistration failed, "			"client not detached.\n");		return err;	}	kfree(i2c_get_clientdata(client));	return 0;}/* Registers 0x07 to 0x0c are word-sized, others are byte-sized    GL518 uses a high-byte first convention, which is exactly opposite to   the usual practice. */static int gl518_read_value(struct i2c_client *client, u8 reg){	if ((reg >= 0x07) && (reg <= 0x0c))		return swab16(i2c_smbus_read_word_data(client, reg));	else		return i2c_smbus_read_byte_data(client, reg);}/* Registers 0x07 to 0x0c are word-sized, others are byte-sized    GL518 uses a high-byte first convention, which is exactly opposite to   the usual practice. */static int gl518_write_value(struct i2c_client *client, u8 reg, u16 value){	if ((reg >= 0x07) && (reg <= 0x0c))		return i2c_smbus_write_word_data(client, reg, swab16(value));	else		return i2c_smbus_write_byte_data(client, reg, value);}static struct gl518_data *gl518_update_device(struct device *dev){	struct i2c_client *client = to_i2c_client(dev);	struct gl518_data *data = i2c_get_clientdata(client);	int val;	down(&data->update_lock);	if ((jiffies - data->last_updated > HZ + HZ / 2) ||	    (jiffies < data->last_updated) || !data->valid) {		dev_dbg(&client->dev, "Starting gl518 update\n");		data->alarms = gl518_read_value(client, GL518_REG_INT);		data->beep_mask = gl518_read_value(client, GL518_REG_ALARM);		val = gl518_read_value(client, GL518_REG_VDD_LIMIT);		data->voltage_min[0] = val & 0xff;		data->voltage_max[0] = (val >> 8) & 0xff;		val = gl518_read_value(client, GL518_REG_VIN1_LIMIT);		data->voltage_min[1] = val & 0xff;		data->voltage_max[1] = (val >> 8) & 0xff;		val = gl518_read_value(client, GL518_REG_VIN2_LIMIT);		data->voltage_min[2] = val & 0xff;		data->voltage_max[2] = (val >> 8) & 0xff;		val = gl518_read_value(client, GL518_REG_VIN3_LIMIT);		data->voltage_min[3] = val & 0xff;		data->voltage_max[3] = (val >> 8) & 0xff;		val = gl518_read_value(client, GL518_REG_FAN_COUNT);		data->fan_in[0] = (val >> 8) & 0xff;		data->fan_in[1] = val & 0xff;		val = gl518_read_value(client, GL518_REG_FAN_LIMIT);		data->fan_min[0] = (val >> 8) & 0xff;		data->fan_min[1] = val & 0xff;		data->temp_in = gl518_read_value(client, GL518_REG_TEMP_IN);		data->temp_max =		    gl518_read_value(client, GL518_REG_TEMP_MAX);		data->temp_hyst =		    gl518_read_value(client, GL518_REG_TEMP_HYST);		val = gl518_read_value(client, GL518_REG_MISC);		data->fan_div[0] = (val >> 6) & 0x03;		data->fan_div[1] = (val >> 4) & 0x03;		data->fan_auto1  = (val >> 3) & 0x01;		data->alarms &= data->alarm_mask;		val = gl518_read_value(client, GL518_REG_CONF);		data->beep_enable = (val >> 2) & 1;		if (data->type != gl518sm_r00) {			data->voltage_in[0] =			    gl518_read_value(client, GL518_REG_VDD);			data->voltage_in[1] =			    gl518_read_value(client, GL518_REG_VIN1);			data->voltage_in[2] =			    gl518_read_value(client, GL518_REG_VIN2);		}		data->voltage_in[3] =		    gl518_read_value(client, GL518_REG_VIN3);		data->last_updated = jiffies;		data->valid = 1;	}	up(&data->update_lock);	return data;}static int __init sensors_gl518sm_init(void){	return i2c_add_driver(&gl518_driver);}static void __exit sensors_gl518sm_exit(void){	i2c_del_driver(&gl518_driver);}MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "	"Kyosti Malkki <kmalkki@cc.hut.fi> and "	"Hong-Gunn Chew <hglinux@gunnet.org>");MODULE_DESCRIPTION("GL518SM driver");MODULE_LICENSE("GPL");module_init(sensors_gl518sm_init);module_exit(sensors_gl518sm_exit);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -