123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- /*
- * Samsung Mobile VE Group.
- *
- * drivers/gpio/secgpio_dvs.c
- *
- * Drivers for samsung gpio debugging & verification.
- *
- * Copyright (C) 2013, Samsung Electronics.
- *
- * 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
- */
- #include <linux/module.h>
- #include <linux/interrupt.h>
- #include <linux/workqueue.h>
- #include <linux/proc_fs.h>
- #include <linux/delay.h>
- #include <linux/types.h>
- #include <linux/platform_device.h>
- #include <linux/timer.h>
- #include <linux/wakelock.h>
- #include <linux/power_supply.h>
- #include <linux/sched.h>
- #include <linux/init.h>
- #include <linux/fs.h>
- #include <linux/gpio.h>
- #include <linux/kernel.h>
- #include <linux/string.h>
- #include <linux/secgpio_dvs.h>
- /*sys fs*/
- struct class *secgpio_dvs_class;
- EXPORT_SYMBOL(secgpio_dvs_class);
- struct device *secgpio_dotest;
- EXPORT_SYMBOL(secgpio_dotest);
- /* extern GPIOMAP_RESULT GpioMap_result; */
- static struct gpio_dvs *gdvs_info;
- static ssize_t checked_secgpio_file_read(
- struct device *dev, struct device_attribute *attr, char *buf);
- static ssize_t checked_sleep_secgpio_file_read(
- struct device *dev, struct device_attribute *attr, char *buf);
- static ssize_t checked_secgpio_init_read_details(
- struct device *dev, struct device_attribute *attr, char *buf);
- static ssize_t checked_secgpio_sleep_read_details(
- struct device *dev, struct device_attribute *attr, char *buf);
- static ssize_t secgpio_ctrl_file_write(
- struct device *dev, struct device_attribute *attr,
- const char *buf, size_t size);
- static ssize_t secgpio_checked_sleepgpio_read(
- struct device *dev, struct device_attribute *attr, char *buf);
- static DEVICE_ATTR(gpioinit_check, 0664,
- checked_secgpio_file_read, NULL);
- static DEVICE_ATTR(gpiosleep_check, 0664,
- checked_sleep_secgpio_file_read, NULL);
- static DEVICE_ATTR(check_init_detail, 0664,
- checked_secgpio_init_read_details, NULL);
- static DEVICE_ATTR(check_sleep_detail, 0664,
- checked_secgpio_sleep_read_details, NULL);
- static DEVICE_ATTR(secgpio_ctrl, 0664 , NULL, secgpio_ctrl_file_write);
- static DEVICE_ATTR(checked_sleepGPIO, 0664,
- secgpio_checked_sleepgpio_read, NULL);
- static struct attribute *secgpio_dvs_attributes[] = {
- &dev_attr_gpioinit_check.attr,
- &dev_attr_gpiosleep_check.attr,
- &dev_attr_check_init_detail.attr,
- &dev_attr_check_sleep_detail.attr,
- &dev_attr_secgpio_ctrl.attr,
- &dev_attr_checked_sleepGPIO.attr,
- NULL,
- };
- static struct attribute_group secgpio_dvs_attr_group = {
- .attrs = secgpio_dvs_attributes,
- };
- static int atoi(const char *str)
- {
- int result = 0;
- int count = 0;
- if (str == NULL)
- return -EIO;
- while (str[count] != 0 /* NULL */
- && str[count] >= '0' && str[count] <= '9') {
- result = result * 10 + str[count] - '0';
- ++count;
- }
- return result;
- }
- static char *
- strtok_r(char *s, const char *delim, char **last)
- {
- char *spanp;
- int c, sc;
- char *tok;
- /* if (s == NULL && (s = *last) == NULL)
- return NULL; */
- if (s == NULL) {
- s = *last;
- if (s == NULL)
- return NULL;
- }
- /*
- * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
- */
- cont:
- c = *s++;
- for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
- if (c == sc)
- goto cont;
- }
- if (c == 0) { /* no non-delimiter characters */
- *last = NULL;
- return NULL;
- }
- tok = s - 1;
- /*
- * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
- * Note that delim must have one NUL; we stop if we see that, too.
- */
- for (;;) {
- c = *s++;
- spanp = (char *)delim;
- do {
- sc = *spanp++;
- if (sc == c) {
- if (c == 0)
- s = NULL;
- else
- s[-1] = 0;
- *last = s;
- return tok;
- }
- } while (sc != 0);
- }
- /* NOTREACHED */
- }
- static char *
- strtok(char *s, const char *delim)
- {
- static char *last;
- return strtok_r(s, delim, &last);
- }
- static ssize_t checked_secgpio_file_read(
- struct device *dev, struct device_attribute *attr, char *buf)
- {
- int i = 0;
- char temp_buf[20];
- struct gpio_dvs *gdvs = dev_get_drvdata(dev);
- for (i = 0; i < gdvs->count; i++) {
- memset(temp_buf, 0, sizeof(char)*20);
- snprintf(temp_buf, 20, "%x ", gdvs->result->init[i]);
- strlcat(buf, temp_buf, PAGE_SIZE);
- }
- return strlen(buf);
- }
- static ssize_t checked_sleep_secgpio_file_read(
- struct device *dev, struct device_attribute *attr, char *buf)
- {
- int i = 0;
- char temp_buf[20];
- struct gpio_dvs *gdvs = dev_get_drvdata(dev);
- for (i = 0; i < gdvs->count; i++) {
- memset(temp_buf, 0, sizeof(char)*20);
- snprintf(temp_buf, 20, "%x ", gdvs->result->sleep[i]);
- strlcat(buf, temp_buf, PAGE_SIZE);
- }
- return strlen(buf);
- }
- static ssize_t checked_secgpio_init_read_details(
- struct device *dev, struct device_attribute *attr, char *buf)
- {
- int i = 0;
- char temp_buf[20];
- struct gpio_dvs *gdvs = dev_get_drvdata(dev);
- for (i = 0; i < gdvs->count; i++) {
- memset(temp_buf, 0, sizeof(char)*20);
- snprintf(temp_buf, 20, "GI[%d] - %x\n ",
- i, gdvs->result->init[i]);
- strlcat(buf, temp_buf, PAGE_SIZE);
- }
- return strlen(buf);
- }
- static ssize_t checked_secgpio_sleep_read_details(
- struct device *dev, struct device_attribute *attr, char *buf)
- {
- int i = 0;
- char temp_buf[20];
- struct gpio_dvs *gdvs = dev_get_drvdata(dev);
- for (i = 0; i < gdvs->count; i++) {
- memset(temp_buf, 0, sizeof(char)*20);
- snprintf(temp_buf, 20, "GS[%d] - %x\n ",
- i, gdvs->result->sleep[i]);
- strlcat(buf, temp_buf, PAGE_SIZE);
- }
- return strlen(buf);
- }
- static ssize_t secgpio_ctrl_file_write(
- struct device *dev, struct device_attribute *attr,
- const char *buf, size_t size)
- {
- char *token = NULL;
- char comp[] = ",";
- int gpio_ctrl[3] = {0,}, num = 0;
- char temp_buf[50];
- pr_info("[secgpio_dvs] GPIO onoff buf = %s\n", buf);
- memset(temp_buf, 0, 50);
- strlcpy(temp_buf, buf, 50);
- token = strtok(temp_buf, comp);
- for (num = 0; num < 3; num++) {
- if (token != NULL) {
- pr_info("[secgpio_dvs] GPIO Control TOKEN = %s\n",
- token);
- gpio_ctrl[num] = atoi(token);
- token = strtok(NULL, comp);
- }
- pr_info("[secgpio_dvs] GPIO Control[%d] = %d\n",
- num, gpio_ctrl[num]);
- }
- /*
- gpio_ctrl[0] = IN/OUT, gpio_ctrl[1] = GPIO NUMBER,
- gpio_ctrl[2] = L/H
- */
- if (gpio_ctrl[0] == 1) {
- gpio_request(gpio_ctrl[1], "gpio_output_test_on");
- gpio_direction_input(gpio_ctrl[1]);
- gpio_free(gpio_ctrl[1]);
- } else {
- gpio_request(gpio_ctrl[1], "gpio_output_test_on");
- gpio_direction_output(gpio_ctrl[1], 1);
- gpio_free(gpio_ctrl[1]);
- if (gpio_ctrl[2] == 1) {
- gpio_request(gpio_ctrl[1], "gpio_output_test_on");
- gpio_set_value(gpio_ctrl[1], 1);
- gpio_free(gpio_ctrl[1]);
- } else if (gpio_ctrl[2] == 0) {
- gpio_request(gpio_ctrl[1], "gpio_output_test_off");
- gpio_set_value(gpio_ctrl[1], 0);
- gpio_free(gpio_ctrl[1]);
- }
- }
- return size;
- }
- static ssize_t secgpio_checked_sleepgpio_read(
- struct device *dev, struct device_attribute *attr, char *buf)
- {
- struct gpio_dvs *gdvs = dev_get_drvdata(dev);
- if (gdvs->check_sleep)
- return snprintf(buf, PAGE_SIZE, "1");
- else
- return snprintf(buf, PAGE_SIZE, "0");
- }
- void gpio_dvs_check_initgpio(void)
- {
- if (gdvs_info && gdvs_info->check_gpio_status)
- gdvs_info->check_gpio_status(PHONE_INIT);
- }
- void gpio_dvs_check_sleepgpio(void)
- {
- if (unlikely(!gdvs_info->check_sleep)) {
- gdvs_info->check_gpio_status(PHONE_SLEEP);
- gdvs_info->check_sleep = true;
- }
- }
- static int secgpio_dvs_probe(struct platform_device *pdev)
- {
- int ret = 0;
- struct class *secgpio_dvs_class;
- struct device *secgpio_dotest;
- struct gpio_dvs *gdvs = dev_get_platdata(&pdev->dev);
- pr_info("[secgpio_dvs] %s has been created!!!\n", __func__);
- secgpio_dvs_class = class_create(THIS_MODULE, "secgpio_check");
- if (IS_ERR(secgpio_dvs_class)) {
- ret = PTR_ERR(secgpio_dvs_class);
- pr_err("Failed to create class(secgpio_check_all)");
- goto fail_out;
- }
- secgpio_dotest = device_create(secgpio_dvs_class,
- NULL, 0, NULL, "secgpio_check_all");
- if (IS_ERR(secgpio_dotest)) {
- ret = PTR_ERR(secgpio_dotest);
- pr_err("Failed to create device(secgpio_check_all)");
- goto fail1;
- }
- dev_set_drvdata(secgpio_dotest, gdvs);
- gdvs_info = gdvs;
- ret = sysfs_create_group(&secgpio_dotest->kobj,
- &secgpio_dvs_attr_group);
- if (ret) {
- pr_err("Failed to create sysfs group");
- goto fail2;
- }
- return ret;
- fail2:
- device_destroy(secgpio_dvs_class,0);
- fail1:
- class_destroy(secgpio_dvs_class);
- fail_out:
- if (ret)
- pr_err(" (err = %d)!\n", ret);
- return ret;
- }
- static int secgpio_dvs_remove(struct platform_device *pdev)
- {
- return 0;
- }
- static struct platform_driver secgpio_dvs = {
- .probe = secgpio_dvs_probe,
- .remove = secgpio_dvs_remove,
- .driver = {
- .name = "secgpio_dvs",
- .owner = THIS_MODULE,
- },
- };
- static int __init secgpio_dvs_init(void)
- {
- int ret;
- ret = platform_driver_register(&secgpio_dvs);
- pr_info("[secgpio_dvs] secgpio_dvs_init has been initialized!!!\n");
- return ret;
- }
- static void __exit secgpio_dvs_exit(void)
- {
- platform_driver_unregister(&secgpio_dvs);
- }
- module_init(secgpio_dvs_init);
- module_exit(secgpio_dvs_exit);
- MODULE_AUTHOR("intae.jun@samsung.com");
- MODULE_DESCRIPTION("BCM2165x GPIO debugging and verification");
- MODULE_LICENSE("GPL");
|