iio: Remove iio structures from mraa_platform_t
[contrib/mraa.git] / src / mraa.c
index 0a7bbd6..9dbffd3 100644 (file)
 #include "gpio.h"
 #include "version.h"
 
+#define MAX_PLATFORM_NAME_LENGTH 128
 mraa_board_t* plat = NULL;
-static mraa_board_t* current_plat = NULL;
-mraa_adv_func_t* advance_func;
+mraa_iio_info_t* plat_iio = NULL;
+
+static char platform_name[MAX_PLATFORM_NAME_LENGTH];
+
+static int num_i2c_devices = 0;
+static int num_iio_devices = 0;
 
 const char*
 mraa_get_version()
@@ -67,6 +72,17 @@ mraa_set_log_level(int level)
     return MRAA_ERROR_INVALID_PARAMETER;
 }
 
+static int
+mraa_count_iio_devices(const char* path, const struct stat* sb, int flag, struct FTW* ftwb)
+{
+    switch (sb->st_mode & S_IFMT) {
+        case S_IFLNK:
+            num_iio_devices++;
+            break;
+    }
+    return 0;
+}
+
 #if (defined SWIGPYTHON) || (defined SWIG)
 mraa_result_t
 #else
@@ -98,17 +114,10 @@ mraa_init()
     PyEval_InitThreads();
 #endif
 
-    advance_func = (mraa_adv_func_t*) malloc(sizeof(mraa_adv_func_t));
-    memset(advance_func, 0, sizeof(mraa_adv_func_t));
-
     mraa_platform_t platform_type;
 #if defined(X86PLAT)
     // Use runtime x86 platform detection
     platform_type = mraa_x86_platform();
-    // x86 platforms have advanced_func table in board config structure
-    free(advance_func);
-    if (plat != NULL)
-        advance_func = plat->adv_func;
 #elif defined(ARMPLAT)
     // Use runtime ARM platform detection
     platform_type = mraa_arm_platform();
@@ -124,15 +133,17 @@ mraa_init()
     if (plat == NULL) {
         plat = (mraa_board_t*) calloc(1, sizeof(mraa_board_t));
         if (plat != NULL) {
-            plat->platform_type = MRAA_UNKNOWN_PLATFORM;
+            plat->platform_type = MRAA_NULL_PLATFORM;
             plat->platform_name = "Unknown platform";
         }
     }
     // Now detect sub platform
     if (plat != NULL) {
         mraa_platform_t usb_platform_type = mraa_usb_platform_extender(plat);
-        if (plat->platform_type == MRAA_UNKNOWN_PLATFORM) {
+        if (plat->platform_type == MRAA_UNKNOWN_PLATFORM && usb_platform_type != MRAA_UNKNOWN_PLATFORM) {
             plat->platform_type = usb_platform_type;
+        } else {
+            return MRAA_ERROR_PLATFORM_NOT_INITIALISED;
         }
     }
     if (plat == NULL) {
@@ -141,13 +152,36 @@ mraa_init()
     }
 #endif
 
-    current_plat = plat;
-    syslog(LOG_NOTICE, "libmraa initialised for platform '%s' of type %d", mraa_get_platform_name(), mraa_get_platform_type());
-    if (mraa_has_sub_platform()) {
-        mraa_select_sub_platform();
-        syslog(LOG_NOTICE, "libmraa initialised for sub-platform '%s' of type %d", mraa_get_platform_name(), mraa_get_platform_type());    
-        mraa_select_main_platform();
+    plat_iio = (mraa_iio_info_t*) calloc(1, sizeof(mraa_iio_info_t));
+    // Now detect IIO devices, linux only
+    // find how many i2c buses we have if we haven't already
+    if (num_iio_devices == 0) {
+        if (nftw("/sys/bus/iio/devices", &mraa_count_iio_devices, 20, FTW_PHYS) == -1) {
+            return MRAA_ERROR_UNSPECIFIED;
+        }
+    }
+    char name[64], filepath[64];
+    int fd, len, i;
+    plat_iio->iio_device_count = num_iio_devices;
+    plat_iio->iio_devices = calloc(num_iio_devices, sizeof(struct _iio));
+    struct _iio* device;
+    for (i=0; i < num_iio_devices; i++) {
+        device = &plat_iio->iio_devices[i];
+        device->num = i;
+        snprintf(filepath, 64, "/sys/bus/iio/devices/iio:device%d/name", i);
+        fd = open(filepath, O_RDONLY);
+        if (fd > 0) {
+            len = read(fd, &name, 64);
+            if (len > 1) {
+                // use strndup
+                device->name = malloc((sizeof(char) * len) + sizeof(char));
+                strncpy(device->name, name, len);
+            }
+            close(fd);
+        }
     }
+
+    syslog(LOG_NOTICE, "libmraa initialised for platform '%s' of type %d", mraa_get_platform_name(), mraa_get_platform_type());
     return MRAA_SUCCESS;
 }
 
@@ -159,14 +193,17 @@ mraa_deinit()
             free(plat->pins);
         }
         mraa_board_t* sub_plat = plat->sub_platform;
-        if (sub_plat != NULL) {        
+        if (sub_plat != NULL) {
             if (sub_plat->pins != NULL) {
                 free(sub_plat->pins);
             }
-            free(sub_plat);        
+            free(sub_plat);
         }
         free(plat);
-        
+
+    }
+    if (plat_iio != NULL) {
+        free(plat_iio);
     }
     closelog();
 }
@@ -265,42 +302,28 @@ mraa_result_print(mraa_result_t result)
 }
 
 
-mraa_boolean_t 
+mraa_boolean_t
 mraa_has_sub_platform()
 {
     return (plat != NULL) && (plat->sub_platform != NULL);
 }
 
-
 mraa_boolean_t
-mraa_select_main_platform()
+mraa_pin_mode_test(int pin, mraa_pinmodes_t mode)
 {
-    if (plat != NULL) {
-        current_plat = plat;
-        return 1;
-    } else
+    if (plat == NULL)
         return 0;
-}
 
-mraa_boolean_t
-mraa_select_sub_platform()
-{
-    if (plat->sub_platform != NULL) {
+    mraa_board_t* current_plat = plat;
+    if (mraa_is_sub_platform_id(pin)) {
         current_plat = plat->sub_platform;
-        return 1;
-    } else
-        return 0;
-}
-
-mraa_boolean_t
-mraa_is_sub_platform_selected()
-{
-    return (plat->sub_platform != NULL) &&  (current_plat == plat->sub_platform);
-}
+        if (current_plat == NULL) {
+            syslog(LOG_ERR, "mraa_pin_mode_test: Sub platform Not Initialised");
+            return 0;
+        }
+        pin = mraa_get_sub_platform_index(pin);
+    }
 
-mraa_boolean_t
-mraa_pin_mode_test(int pin, mraa_pinmodes_t mode)
-{
     if (current_plat == NULL || current_plat->platform_type == MRAA_UNKNOWN_PLATFORM) {
         return 0;
     }
@@ -350,44 +373,90 @@ mraa_pin_mode_test(int pin, mraa_pinmodes_t mode)
 mraa_platform_t
 mraa_get_platform_type()
 {
-    if (current_plat == NULL)
+    if (plat == NULL)
         return MRAA_UNKNOWN_PLATFORM;
-    return current_plat->platform_type;
+    return plat->platform_type;
 }
 
-
+int
+mraa_get_platform_combined_type()
+{
+    int type = mraa_get_platform_type();
+    int sub_type = mraa_has_sub_platform() ? plat->sub_platform->platform_type : MRAA_UNKNOWN_PLATFORM;
+    return type | (sub_type << 8);
+}
 
 unsigned int
 mraa_adc_raw_bits()
 {
-    if (current_plat == NULL)
+    if (plat == NULL)
         return 0;
 
-    if (current_plat->aio_count == 0)
+    if (plat->aio_count == 0)
         return 0;
 
-    return current_plat->adc_raw;
+    return plat->adc_raw;
+}
+
+unsigned int
+mraa_get_platform_adc_raw_bits(uint8_t platform_offset)
+{
+    if (platform_offset == MRAA_MAIN_PLATFORM_OFFSET)
+        return mraa_adc_raw_bits();
+    else {
+        if (!mraa_has_sub_platform())
+            return 0;
+
+        if (plat->sub_platform->aio_count == 0)
+            return 0;
+
+        return plat->sub_platform->adc_raw;
+    }
 }
 
+
 unsigned int
 mraa_adc_supported_bits()
 {
-    if (current_plat == NULL)
+    if (plat == NULL)
         return 0;
 
-    if (current_plat->aio_count == 0)
+    if (plat->aio_count == 0)
         return 0;
 
-    return current_plat->adc_supported;
+    return plat->adc_supported;
+}
+
+unsigned int
+mraa_get_platform_adc_supported_bits(int platform_offset)
+{
+    if (platform_offset == MRAA_MAIN_PLATFORM_OFFSET)
+        return mraa_adc_supported_bits();
+    else {
+        if (!mraa_has_sub_platform())
+            return 0;
+
+        if (plat->sub_platform->aio_count == 0)
+            return 0;
+
+        return plat->sub_platform->adc_supported;
+    }
 }
 
+
 char*
 mraa_get_platform_name()
 {
-    if (current_plat == NULL) {
+    if (plat == NULL) {
         return NULL;
     }
-    return (char*) current_plat->platform_name;
+    if (mraa_has_sub_platform()) {
+        snprintf(platform_name, MAX_PLATFORM_NAME_LENGTH, "%s + %s", plat->platform_name, plat->sub_platform->platform_name);
+    } else {
+        strncpy(platform_name, plat->platform_name, MAX_PLATFORM_NAME_LENGTH-1);
+    }
+
+    return platform_name;
 }
 
 int
@@ -416,34 +485,63 @@ mraa_get_i2c_bus_id(unsigned i2c_bus)
 unsigned int
 mraa_get_pin_count()
 {
-    if (current_plat == NULL) {
+    if (plat == NULL) {
         return 0;
     }
-    return current_plat->phy_pin_count;
+    return plat->phy_pin_count;
+}
+
+unsigned int
+mraa_get_platform_pin_count(uint8_t platform_offset)
+{
+    if (platform_offset == MRAA_MAIN_PLATFORM_OFFSET)
+        return mraa_get_pin_count();
+    else {
+        if (mraa_has_sub_platform())
+           return plat->sub_platform->phy_pin_count;
+        else
+           return 0;
+    }
 }
 
+
 char*
 mraa_get_pin_name(int pin)
 {
-    if (current_plat == NULL) {
-        return NULL;
+    if (plat == NULL)
+        return 0;
+
+    mraa_board_t* current_plat = plat;
+    if (mraa_is_sub_platform_id(pin)) {
+        current_plat = plat->sub_platform;
+        if (current_plat == NULL) {
+            syslog(LOG_ERR, "mraa_get_pin_name: Sub platform Not Initialised");
+            return 0;
+        }
+        pin = mraa_get_sub_platform_index(pin);
     }
+
     if (pin > (current_plat->phy_pin_count - 1) || pin < 0)
         return NULL;
     return (char*) current_plat->pins[pin].name;
 }
 
 int
-mraa_get_default_i2c_bus()
+mraa_get_default_i2c_bus(uint8_t platform_offset)
 {
-    if (current_plat == NULL) {
+    if (plat == NULL)
         return -1;
-    } else
-        return current_plat->def_i2c_bus;
+    if (platform_offset == MRAA_MAIN_PLATFORM_OFFSET) {
+        return plat->def_i2c_bus;
+    } else {
+        if (mraa_has_sub_platform())
+           return plat->sub_platform->def_i2c_bus;
+        else
+           return -1;
+    }
 }
 
 
-
 mraa_boolean_t
 mraa_file_exist(const char* filename)
 {
@@ -569,10 +667,8 @@ mraa_link_targets(const char* filename, const char* targetname)
     }
 }
 
-static int num_i2c_devices = 0;
-
 static int
-mraa_count_files(const char* path, const struct stat* sb, int flag, struct FTW* ftwb)
+mraa_count_i2c_files(const char* path, const struct stat* sb, int flag, struct FTW* ftwb)
 {
     switch (sb->st_mode & S_IFMT) {
         case S_IFLNK:
@@ -598,7 +694,7 @@ mraa_find_i2c_bus(const char* devname, int startfrom)
 
     // find how many i2c buses we have if we haven't already
     if (num_i2c_devices == 0) {
-        if (nftw("/sys/class/i2c-dev/", &mraa_count_files, 20, FTW_PHYS) == -1) {
+        if (nftw("/sys/class/i2c-dev/", &mraa_count_i2c_files, 20, FTW_PHYS) == -1) {
             return -1;
         }
     }
@@ -657,14 +753,34 @@ mraa_is_sub_platform_id(int pin_or_bus)
     return (pin_or_bus & MRAA_SUB_PLATFORM_MASK) != 0;
 }
 
-int 
+int
 mraa_get_sub_platform_id(int pin_or_bus)
 {
     return pin_or_bus | MRAA_SUB_PLATFORM_MASK;
 }
 
-int 
+int
 mraa_get_sub_platform_index(int pin_or_bus)
 {
     return pin_or_bus & (~MRAA_SUB_PLATFORM_MASK);
 }
+
+int
+mraa_get_iio_device_count()
+{
+    return plat_iio->iio_device_count;
+}
+
+int
+mraa_find_iio_device(const char* devicename)
+{
+    int i = 0;
+    for (i; i < plat_iio->iio_device_count; i++) {
+#if 0
+        // compare with devices array
+        if (!strcmp() {
+        }
+#endif
+    }
+    return 0;
+}