summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2018-10-25 15:33:23 -0500
committerJohn Klug <john.klug@multitech.com>2018-10-25 15:33:23 -0500
commitc0380040166366a290c5e44a977a8acb6e3120ab (patch)
tree5f37cff21878aca36c6cce18602e488db120f3b4
parenta173b24ce0703a53ff0b82e90295bb5c1bd34844 (diff)
downloadmtac-c0380040166366a290c5e44a977a8acb6e3120ab.tar.gz
mtac-c0380040166366a290c5e44a977a8acb6e3120ab.tar.bz2
mtac-c0380040166366a290c5e44a977a8acb6e3120ab.zip
Add mtac_free function to mtac module1.1.0
-rw-r--r--mtac.c46
-rw-r--r--mtac.h6
2 files changed, 43 insertions, 9 deletions
diff --git a/mtac.c b/mtac.c
index 4837ade..2f31bbe 100644
--- a/mtac.c
+++ b/mtac.c
@@ -1,8 +1,8 @@
-#define DRIVER_VERSION "v1.0.0"
+#define DRIVER_VERSION "v1.1.0"
#define DRIVER_AUTHOR "John Klug <john.klug@multitech.com>"
#define DRIVER_DESC "MTS driver to supervise MTAC slots"
#define DRIVER_NAME "mtac-slots"
-/* #define DEBUG 1 */
+#define DEBUG 0
#include <linux/types.h>
#include <linux/gpio.h>
@@ -377,8 +377,10 @@ int mtac_find(void(*set_info)(struct ap_info* info), const char *target_product_
struct mts_ap_eeprom_layout *app;
int slot_count = 0;
+ log_debug("mtac_find enter");
for (port_index = 0; port_index < NUM_AP; port_index++) {
- log_debug("mtac_find: State of mtac mutex is %d",(*(int *)(&mtac_mutex.count)));
+ log_debug("mtac_find: port_index: %d State of mtac mutex is %d",
+ port_index, (*(int *)(&mtac_mutex.count)));
mutex_lock(&mtac_mutex);
if (mtac_port_info[port_index] != NULL) {
log_debug("Accessory Port %d of %d is in use",port_index+1,NUM_AP);
@@ -392,7 +394,7 @@ int mtac_find(void(*set_info)(struct ap_info* info), const char *target_product_
mutex_unlock(&mtac_mutex);
continue;
} else if (mts_ap_eeprom[port_index][0] == 0x0) {
- log_debug("no accessory card inserted in port %d", port_index);
+ log_debug("no accessory card inserted in port_index %d", port_index);
mutex_unlock(&mtac_mutex);
continue;
} else if (strstr(app->product_id, target_product_id)) {
@@ -424,6 +426,41 @@ int mtac_find(void(*set_info)(struct ap_info* info), const char *target_product_
}
EXPORT_SYMBOL(mtac_find);
+void mtac_free(const char *product_id, bool(* setup)(enum ap port), const char *link)
+{
+ int port_index, count, port;
+ char buf[32];
+ struct mts_ap_eeprom_layout *app;
+ log_debug("mtac_free enter");
+ count = 0;
+ for (port_index = 0; port_index < NUM_AP; port_index++) {
+ port = port_index + 1;
+ app = (struct mts_ap_eeprom_layout *)mts_ap_eeprom[port_index];
+ if (app && strstr(app->product_id, product_id)) {
+ count++;
+ log_debug("Free port %d product_id: %s mtac_port_info: %p",
+ port_index + 1, product_id,mtac_port_info[port_index]);
+ if(mtac_port_info[port_index])
+ log_debug("setup: %p setup ptr: %p",mtac_port_info[port_index]->setup,setup);
+ if (mtac_port_info[port_index] && (mtac_port_info[port_index]->setup == setup)) {
+ log_debug("port_index %d is occupied by us, teardown next",port_index);
+
+ if (count > 1) {
+ sprintf(buf, "%s-%d",link,port);
+ } else {
+ sprintf(buf, "%s",link);
+ }
+ sysfs_remove_link(mtac_port_info[port_index]->subdirs->parent, buf);
+
+ mtac_port_info[port_index]->teardown(port_index+1);
+ kfree(mtac_port_info[port_index]);
+ mtac_port_info[port_index] = NULL; // Slot available
+ } // MTAC Slot array is in use by our module
+ } // Slot EEPROM says it is occupied by our module
+ } // Loop through the ports
+}
+EXPORT_SYMBOL(mtac_free);
+
/*
* Display the EEPROM for all the slots.
*/
@@ -446,7 +483,6 @@ static int __init mtac_init(void)
return 0;
}
-/* We can only tear down our own device */
static void __exit mtac_exit(void)
{
log_info("exiting");
diff --git a/mtac.h b/mtac.h
index 1faa104..03e6cd0 100644
--- a/mtac.h
+++ b/mtac.h
@@ -23,9 +23,6 @@
#define PRODUCT_ID_MTAC_PULSE "MTAC-PULSE"
#define PRODUCT_ID_MTAC_XDOT "MTAC-XDOT"
-
-#define DEBUG 1
-
/* Hardware version must be fewer characters than hw_version
in struct mts_ap_eeprom_layout */
/* MTAC-LORA with native SPI or FTDI FT4222 */
@@ -48,7 +45,7 @@ enum {
MTAC_LORA_1_0,
MTAC_LORA_1_1,
MTAC_LORA_1_5,
- MTAC_PULSE_1_0,
+ MTAC_PULSE_1_0,
MTAC_XDOT_0_0,
};
@@ -92,4 +89,5 @@ extern struct gpio_pin *mtac_gpio_pin_by_name(const char *name, int port_index);
extern void mtac_clear_port_pins(int port_index);
extern int mtac_find(void(*set_info)(struct ap_info* info), const char *target_product_id);
extern struct ap_info *mtac_port_info[];
+extern void mtac_free(const char * product_id, bool (* setup)(enum ap port), const char *link);
#endif /* IO_MODULE_MTAC_H_ */