diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-11-09 21:18:24 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:37 -0500 |
commit | bc2a6c5719efd74ce841ad0f0c9b6ea2590da6da (patch) | |
tree | d945777eb1201d3c3b546b1b5f35145e585627a2 /drivers/media/rc/rc-main.c | |
parent | f62de675f796a992011c598c405a3d6fada9aa20 (diff) |
[media] rc-core: Merge rc-sysfs.c into rc-main.c
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc/rc-main.c')
-rw-r--r-- | drivers/media/rc/rc-main.c | 349 |
1 files changed, 347 insertions, 2 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index d6de2e25315e..d7726776f937 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* ir-keytable.c - handle IR scancode->keycode tables | 1 | /* rc-core.c - handle IR scancode->keycode tables |
2 | * | 2 | * |
3 | * Copyright (C) 2009 by Mauro Carvalho Chehab <mchehab@redhat.com> | 3 | * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com> |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -15,8 +15,14 @@ | |||
15 | 15 | ||
16 | #include <linux/input.h> | 16 | #include <linux/input.h> |
17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
18 | #include <linux/device.h> | ||
18 | #include "rc-core-priv.h" | 19 | #include "rc-core-priv.h" |
19 | 20 | ||
21 | #define IRRCV_NUM_DEVICES 256 | ||
22 | |||
23 | /* bit array to represent IR sysfs device number */ | ||
24 | static unsigned long ir_core_dev_number; | ||
25 | |||
20 | /* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */ | 26 | /* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */ |
21 | #define IR_TAB_MIN_SIZE 256 | 27 | #define IR_TAB_MIN_SIZE 256 |
22 | #define IR_TAB_MAX_SIZE 8192 | 28 | #define IR_TAB_MAX_SIZE 8192 |
@@ -758,6 +764,345 @@ void ir_input_unregister(struct input_dev *input_dev) | |||
758 | } | 764 | } |
759 | EXPORT_SYMBOL_GPL(ir_input_unregister); | 765 | EXPORT_SYMBOL_GPL(ir_input_unregister); |
760 | 766 | ||
767 | /* class for /sys/class/rc */ | ||
768 | static char *ir_devnode(struct device *dev, mode_t *mode) | ||
769 | { | ||
770 | return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev)); | ||
771 | } | ||
772 | |||
773 | static struct class ir_input_class = { | ||
774 | .name = "rc", | ||
775 | .devnode = ir_devnode, | ||
776 | }; | ||
777 | |||
778 | static struct { | ||
779 | u64 type; | ||
780 | char *name; | ||
781 | } proto_names[] = { | ||
782 | { IR_TYPE_UNKNOWN, "unknown" }, | ||
783 | { IR_TYPE_RC5, "rc-5" }, | ||
784 | { IR_TYPE_NEC, "nec" }, | ||
785 | { IR_TYPE_RC6, "rc-6" }, | ||
786 | { IR_TYPE_JVC, "jvc" }, | ||
787 | { IR_TYPE_SONY, "sony" }, | ||
788 | { IR_TYPE_RC5_SZ, "rc-5-sz" }, | ||
789 | { IR_TYPE_LIRC, "lirc" }, | ||
790 | }; | ||
791 | |||
792 | #define PROTO_NONE "none" | ||
793 | |||
794 | /** | ||
795 | * show_protocols() - shows the current IR protocol(s) | ||
796 | * @d: the device descriptor | ||
797 | * @mattr: the device attribute struct (unused) | ||
798 | * @buf: a pointer to the output buffer | ||
799 | * | ||
800 | * This routine is a callback routine for input read the IR protocol type(s). | ||
801 | * it is trigged by reading /sys/class/rc/rc?/protocols. | ||
802 | * It returns the protocol names of supported protocols. | ||
803 | * Enabled protocols are printed in brackets. | ||
804 | */ | ||
805 | static ssize_t show_protocols(struct device *d, | ||
806 | struct device_attribute *mattr, char *buf) | ||
807 | { | ||
808 | struct ir_input_dev *ir_dev = dev_get_drvdata(d); | ||
809 | u64 allowed, enabled; | ||
810 | char *tmp = buf; | ||
811 | int i; | ||
812 | |||
813 | /* Device is being removed */ | ||
814 | if (!ir_dev) | ||
815 | return -EINVAL; | ||
816 | |||
817 | if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) { | ||
818 | enabled = ir_dev->rc_tab.ir_type; | ||
819 | allowed = ir_dev->props->allowed_protos; | ||
820 | } else if (ir_dev->raw) { | ||
821 | enabled = ir_dev->raw->enabled_protocols; | ||
822 | allowed = ir_raw_get_allowed_protocols(); | ||
823 | } else | ||
824 | return sprintf(tmp, "[builtin]\n"); | ||
825 | |||
826 | IR_dprintk(1, "allowed - 0x%llx, enabled - 0x%llx\n", | ||
827 | (long long)allowed, | ||
828 | (long long)enabled); | ||
829 | |||
830 | for (i = 0; i < ARRAY_SIZE(proto_names); i++) { | ||
831 | if (allowed & enabled & proto_names[i].type) | ||
832 | tmp += sprintf(tmp, "[%s] ", proto_names[i].name); | ||
833 | else if (allowed & proto_names[i].type) | ||
834 | tmp += sprintf(tmp, "%s ", proto_names[i].name); | ||
835 | } | ||
836 | |||
837 | if (tmp != buf) | ||
838 | tmp--; | ||
839 | *tmp = '\n'; | ||
840 | return tmp + 1 - buf; | ||
841 | } | ||
842 | |||
843 | /** | ||
844 | * store_protocols() - changes the current IR protocol(s) | ||
845 | * @d: the device descriptor | ||
846 | * @mattr: the device attribute struct (unused) | ||
847 | * @buf: a pointer to the input buffer | ||
848 | * @len: length of the input buffer | ||
849 | * | ||
850 | * This routine is a callback routine for changing the IR protocol type. | ||
851 | * It is trigged by writing to /sys/class/rc/rc?/protocols. | ||
852 | * Writing "+proto" will add a protocol to the list of enabled protocols. | ||
853 | * Writing "-proto" will remove a protocol from the list of enabled protocols. | ||
854 | * Writing "proto" will enable only "proto". | ||
855 | * Writing "none" will disable all protocols. | ||
856 | * Returns -EINVAL if an invalid protocol combination or unknown protocol name | ||
857 | * is used, otherwise @len. | ||
858 | */ | ||
859 | static ssize_t store_protocols(struct device *d, | ||
860 | struct device_attribute *mattr, | ||
861 | const char *data, | ||
862 | size_t len) | ||
863 | { | ||
864 | struct ir_input_dev *ir_dev = dev_get_drvdata(d); | ||
865 | bool enable, disable; | ||
866 | const char *tmp; | ||
867 | u64 type; | ||
868 | u64 mask; | ||
869 | int rc, i, count = 0; | ||
870 | unsigned long flags; | ||
871 | |||
872 | /* Device is being removed */ | ||
873 | if (!ir_dev) | ||
874 | return -EINVAL; | ||
875 | |||
876 | if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) | ||
877 | type = ir_dev->rc_tab.ir_type; | ||
878 | else if (ir_dev->raw) | ||
879 | type = ir_dev->raw->enabled_protocols; | ||
880 | else { | ||
881 | IR_dprintk(1, "Protocol switching not supported\n"); | ||
882 | return -EINVAL; | ||
883 | } | ||
884 | |||
885 | while ((tmp = strsep((char **) &data, " \n")) != NULL) { | ||
886 | if (!*tmp) | ||
887 | break; | ||
888 | |||
889 | if (*tmp == '+') { | ||
890 | enable = true; | ||
891 | disable = false; | ||
892 | tmp++; | ||
893 | } else if (*tmp == '-') { | ||
894 | enable = false; | ||
895 | disable = true; | ||
896 | tmp++; | ||
897 | } else { | ||
898 | enable = false; | ||
899 | disable = false; | ||
900 | } | ||
901 | |||
902 | if (!enable && !disable && !strncasecmp(tmp, PROTO_NONE, sizeof(PROTO_NONE))) { | ||
903 | tmp += sizeof(PROTO_NONE); | ||
904 | mask = 0; | ||
905 | count++; | ||
906 | } else { | ||
907 | for (i = 0; i < ARRAY_SIZE(proto_names); i++) { | ||
908 | if (!strncasecmp(tmp, proto_names[i].name, strlen(proto_names[i].name))) { | ||
909 | tmp += strlen(proto_names[i].name); | ||
910 | mask = proto_names[i].type; | ||
911 | break; | ||
912 | } | ||
913 | } | ||
914 | if (i == ARRAY_SIZE(proto_names)) { | ||
915 | IR_dprintk(1, "Unknown protocol: '%s'\n", tmp); | ||
916 | return -EINVAL; | ||
917 | } | ||
918 | count++; | ||
919 | } | ||
920 | |||
921 | if (enable) | ||
922 | type |= mask; | ||
923 | else if (disable) | ||
924 | type &= ~mask; | ||
925 | else | ||
926 | type = mask; | ||
927 | } | ||
928 | |||
929 | if (!count) { | ||
930 | IR_dprintk(1, "Protocol not specified\n"); | ||
931 | return -EINVAL; | ||
932 | } | ||
933 | |||
934 | if (ir_dev->props && ir_dev->props->change_protocol) { | ||
935 | rc = ir_dev->props->change_protocol(ir_dev->props->priv, | ||
936 | type); | ||
937 | if (rc < 0) { | ||
938 | IR_dprintk(1, "Error setting protocols to 0x%llx\n", | ||
939 | (long long)type); | ||
940 | return -EINVAL; | ||
941 | } | ||
942 | } | ||
943 | |||
944 | if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) { | ||
945 | spin_lock_irqsave(&ir_dev->rc_tab.lock, flags); | ||
946 | ir_dev->rc_tab.ir_type = type; | ||
947 | spin_unlock_irqrestore(&ir_dev->rc_tab.lock, flags); | ||
948 | } else { | ||
949 | ir_dev->raw->enabled_protocols = type; | ||
950 | } | ||
951 | |||
952 | IR_dprintk(1, "Current protocol(s): 0x%llx\n", | ||
953 | (long long)type); | ||
954 | |||
955 | return len; | ||
956 | } | ||
957 | |||
958 | #define ADD_HOTPLUG_VAR(fmt, val...) \ | ||
959 | do { \ | ||
960 | int err = add_uevent_var(env, fmt, val); \ | ||
961 | if (err) \ | ||
962 | return err; \ | ||
963 | } while (0) | ||
964 | |||
965 | static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env) | ||
966 | { | ||
967 | struct ir_input_dev *ir_dev = dev_get_drvdata(device); | ||
968 | |||
969 | if (ir_dev->rc_tab.name) | ||
970 | ADD_HOTPLUG_VAR("NAME=%s", ir_dev->rc_tab.name); | ||
971 | if (ir_dev->driver_name) | ||
972 | ADD_HOTPLUG_VAR("DRV_NAME=%s", ir_dev->driver_name); | ||
973 | |||
974 | return 0; | ||
975 | } | ||
976 | |||
977 | /* | ||
978 | * Static device attribute struct with the sysfs attributes for IR's | ||
979 | */ | ||
980 | static DEVICE_ATTR(protocols, S_IRUGO | S_IWUSR, | ||
981 | show_protocols, store_protocols); | ||
982 | |||
983 | static struct attribute *rc_dev_attrs[] = { | ||
984 | &dev_attr_protocols.attr, | ||
985 | NULL, | ||
986 | }; | ||
987 | |||
988 | static struct attribute_group rc_dev_attr_grp = { | ||
989 | .attrs = rc_dev_attrs, | ||
990 | }; | ||
991 | |||
992 | static const struct attribute_group *rc_dev_attr_groups[] = { | ||
993 | &rc_dev_attr_grp, | ||
994 | NULL | ||
995 | }; | ||
996 | |||
997 | static struct device_type rc_dev_type = { | ||
998 | .groups = rc_dev_attr_groups, | ||
999 | .uevent = rc_dev_uevent, | ||
1000 | }; | ||
1001 | |||
1002 | /** | ||
1003 | * ir_register_class() - creates the sysfs for /sys/class/rc/rc? | ||
1004 | * @input_dev: the struct input_dev descriptor of the device | ||
1005 | * | ||
1006 | * This routine is used to register the syfs code for IR class | ||
1007 | */ | ||
1008 | int ir_register_class(struct input_dev *input_dev) | ||
1009 | { | ||
1010 | struct ir_input_dev *ir_dev = input_get_drvdata(input_dev); | ||
1011 | int devno = find_first_zero_bit(&ir_core_dev_number, | ||
1012 | IRRCV_NUM_DEVICES); | ||
1013 | |||
1014 | if (unlikely(devno < 0)) | ||
1015 | return devno; | ||
1016 | |||
1017 | ir_dev->dev.type = &rc_dev_type; | ||
1018 | ir_dev->devno = devno; | ||
1019 | |||
1020 | ir_dev->dev.class = &ir_input_class; | ||
1021 | ir_dev->dev.parent = input_dev->dev.parent; | ||
1022 | input_dev->dev.parent = &ir_dev->dev; | ||
1023 | dev_set_name(&ir_dev->dev, "rc%d", devno); | ||
1024 | dev_set_drvdata(&ir_dev->dev, ir_dev); | ||
1025 | return device_register(&ir_dev->dev); | ||
1026 | }; | ||
1027 | |||
1028 | /** | ||
1029 | * ir_register_input - registers ir input device with input subsystem | ||
1030 | * @input_dev: the struct input_dev descriptor of the device | ||
1031 | */ | ||
1032 | |||
1033 | int ir_register_input(struct input_dev *input_dev) | ||
1034 | { | ||
1035 | struct ir_input_dev *ir_dev = input_get_drvdata(input_dev); | ||
1036 | int rc; | ||
1037 | const char *path; | ||
1038 | |||
1039 | |||
1040 | rc = input_register_device(input_dev); | ||
1041 | if (rc < 0) { | ||
1042 | device_del(&ir_dev->dev); | ||
1043 | return rc; | ||
1044 | } | ||
1045 | |||
1046 | __module_get(THIS_MODULE); | ||
1047 | |||
1048 | path = kobject_get_path(&ir_dev->dev.kobj, GFP_KERNEL); | ||
1049 | printk(KERN_INFO "%s: %s as %s\n", | ||
1050 | dev_name(&ir_dev->dev), | ||
1051 | input_dev->name ? input_dev->name : "Unspecified device", | ||
1052 | path ? path : "N/A"); | ||
1053 | kfree(path); | ||
1054 | |||
1055 | set_bit(ir_dev->devno, &ir_core_dev_number); | ||
1056 | return 0; | ||
1057 | } | ||
1058 | |||
1059 | /** | ||
1060 | * ir_unregister_class() - removes the sysfs for sysfs for | ||
1061 | * /sys/class/rc/rc? | ||
1062 | * @input_dev: the struct input_dev descriptor of the device | ||
1063 | * | ||
1064 | * This routine is used to unregister the syfs code for IR class | ||
1065 | */ | ||
1066 | void ir_unregister_class(struct input_dev *input_dev) | ||
1067 | { | ||
1068 | struct ir_input_dev *ir_dev = input_get_drvdata(input_dev); | ||
1069 | |||
1070 | input_set_drvdata(input_dev, NULL); | ||
1071 | clear_bit(ir_dev->devno, &ir_core_dev_number); | ||
1072 | input_unregister_device(input_dev); | ||
1073 | device_del(&ir_dev->dev); | ||
1074 | |||
1075 | module_put(THIS_MODULE); | ||
1076 | } | ||
1077 | |||
1078 | /* | ||
1079 | * Init/exit code for the module. Basically, creates/removes /sys/class/rc | ||
1080 | */ | ||
1081 | |||
1082 | static int __init ir_core_init(void) | ||
1083 | { | ||
1084 | int rc = class_register(&ir_input_class); | ||
1085 | if (rc) { | ||
1086 | printk(KERN_ERR "ir_core: unable to register rc class\n"); | ||
1087 | return rc; | ||
1088 | } | ||
1089 | |||
1090 | /* Initialize/load the decoders/keymap code that will be used */ | ||
1091 | ir_raw_init(); | ||
1092 | ir_rcmap_init(); | ||
1093 | |||
1094 | return 0; | ||
1095 | } | ||
1096 | |||
1097 | static void __exit ir_core_exit(void) | ||
1098 | { | ||
1099 | class_unregister(&ir_input_class); | ||
1100 | ir_rcmap_cleanup(); | ||
1101 | } | ||
1102 | |||
1103 | module_init(ir_core_init); | ||
1104 | module_exit(ir_core_exit); | ||
1105 | |||
761 | int ir_core_debug; /* ir_debug level (0,1,2) */ | 1106 | int ir_core_debug; /* ir_debug level (0,1,2) */ |
762 | EXPORT_SYMBOL_GPL(ir_core_debug); | 1107 | EXPORT_SYMBOL_GPL(ir_core_debug); |
763 | module_param_named(debug, ir_core_debug, int, 0644); | 1108 | module_param_named(debug, ir_core_debug, int, 0644); |