3125c5b136db10288ea28e28bc052d6501adb8aa
[contrib/mraa.git] / src / intel_de3815.c
1 /*
2  * Author: Thomas Ingleby <thomas.c.ingleby@intel.com>
3  * Copyright (c) 2014 Intel Corporation.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "common.h"
29 #include "intel_de3815.h"
30
31 #define MAX_SIZE 64
32 #define SYSFS_CLASS_GPIO "/sys/class/gpio"
33
34 mraa_board_t*
35 mraa_intel_de3815()
36 {
37     mraa_board_t* b = (mraa_board_t*) malloc(sizeof(mraa_board_t));
38     if (b == NULL)
39         return NULL;
40
41     b->phy_pin_count = 18;
42     //b->gpio_count = 14;
43     b->aio_count = 0;
44     b->adc_raw = 0;
45     b->adc_supported = 0;
46
47     b->pins = (mraa_pininfo_t*) malloc(sizeof(mraa_pininfo_t)*MRAA_INTEL_DE3815_PINCOUNT);
48
49     printf("THIS IS DA NUC MAN\n");
50
51     strncpy(b->pins[0].name, "1.8v", 8);
52     b->pins[0].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
53
54     strncpy(b->pins[1].name, "GND", 8);
55     b->pins[1].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
56     strncpy(b->pins[2].name, "HDMIcec", 8);
57     b->pins[2].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
58     strncpy(b->pins[3].name, "DMICclk", 8);
59     b->pins[3].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
60     strncpy(b->pins[4].name, "3.3v", 8);
61     b->pins[4].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
62     strncpy(b->pins[5].name, "DMICda", 8);
63     b->pins[5].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
64     strncpy(b->pins[6].name, "Key", 8);
65     b->pins[6].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
66     strncpy(b->pins[7].name, "SMB-A", 8);
67     b->pins[7].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
68     strncpy(b->pins[8].name, "5v", 8);
69     b->pins[8].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
70     strncpy(b->pins[9].name, "SCI", 8);
71     b->pins[9].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
72     strncpy(b->pins[10].name, "PWM0", 8);
73     b->pins[10].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
74     strncpy(b->pins[11].name, "PWM1", 8);
75     b->pins[11].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
76
77     strncpy(b->pins[12].name, "I2C0-SCL", 8);
78     b->pins[12].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,1,0,0};
79     b->pins[12].i2c.pinmap = 1;
80     b->pins[12].i2c.mux_total = 0;
81
82     strncpy(b->pins[13].name, "I2C0-SDA", 8);
83     b->pins[13].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,1,0,0};
84     b->pins[13].i2c.pinmap = 1;
85     b->pins[13].i2c.mux_total = 0;
86
87     strncpy(b->pins[14].name, "I2C1-SCL", 8);
88     b->pins[14].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,1,0,0};
89     b->pins[14].i2c.pinmap = 1;
90     b->pins[14].i2c.mux_total = 0;
91
92     strncpy(b->pins[15].name, "I2C1-SDA", 8);
93     b->pins[15].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,1,0,0};
94     b->pins[15].i2c.pinmap = 1;
95     b->pins[15].i2c.mux_total = 0;
96
97     strncpy(b->pins[16].name, "SMB_CLK", 8);
98     b->pins[16].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
99     strncpy(b->pins[17].name, "SMB_SDA", 8);
100     b->pins[17].capabilites = (mraa_pincapabilities_t) {1,0,0,0,0,0,0,0};
101
102     //BUS DEFINITIONS
103     b->i2c_bus_count = 2;
104     b->def_i2c_bus = 0;
105     b->i2c_bus[0].bus_id = 0;
106     b->i2c_bus[0].sda = 12;
107     b->i2c_bus[0].scl = 13;
108
109     b->i2c_bus[1].bus_id = 1;
110     b->i2c_bus[1].sda = 14;
111     b->i2c_bus[1].scl = 15;
112
113     b->spi_bus_count = 1;
114     b->def_spi_bus = 0;
115     b->spi_bus[0].bus_id = 1;
116     b->spi_bus[0].slave_s = 0;
117     b->spi_bus[0].cs = 10;
118     b->spi_bus[0].mosi = 11;
119     b->spi_bus[0].miso = 12;
120     b->spi_bus[0].sclk = 13;
121
122     return b;
123 }