hw_i2c.c 3.7 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2018, RT-Thread Development Team
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6
 *
 * Change Logs:
7
 * Date           Author           Notes
8 9 10 11 12 13
 * 2018-01-04     Sundm75        the first version
 */

#include <rtthread.h>
#include <rtdevice.h>
#include "ls1c_i2c.h"  
14 15 16
#include "../libraries/ls1c_pin.h"

#ifdef RT_USING_I2C
17 18 19 20 21 22 23 24 25 26 27 28

struct ls1c_i2c_bus
{
    struct rt_i2c_bus_device parent;
    rt_uint32_t u32Module;
};

rt_size_t rt_i2c_master_xfer(struct rt_i2c_bus_device *bus,
                          struct rt_i2c_msg         *msgs,
                          rt_uint32_t               num)
{
    struct ls1c_i2c_bus * i2c_bus = (struct ls1c_i2c_bus *)bus;
29
    ls1c_i2c_info_t i2c_info;  
30 31 32 33
    struct rt_i2c_msg *msg;
    int i;
    rt_int32_t ret = RT_EOK;
    i2c_info.clock = 50000;       // 50kb/s  
34 35 36
    i2c_info.I2Cx  = i2c_bus->u32Module;
    i2c_init(&i2c_info);
    
37 38 39 40 41
    for (i = 0; i < num; i++)
    {
        msg = &msgs[i];
        if (msg->flags == RT_I2C_RD)
        {
42 43 44 45 46
            i2c_send_start_and_addr(&i2c_info, msg->addr, LS1C_I2C_DIRECTION_READ);  
            i2c_receive_ack(&i2c_info); 
            i2c_receive_data(&i2c_info, (rt_uint8_t *)msg->buf, msg->len);  
            i2c_send_stop(&i2c_info);   
         }
47 48
        else if(msg->flags == RT_I2C_WR)
        {
49 50 51 52 53
            i2c_send_start_and_addr(&i2c_info, msg->addr, LS1C_I2C_DIRECTION_WRITE);  
            i2c_receive_ack(&i2c_info);  
            i2c_send_data(&i2c_info, (rt_uint8_t *)msg->buf, msg->len);  
            i2c_send_stop(&i2c_info);  
        }
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
        ret++;
    }
    return ret;
}

rt_err_t rt_i2c_bus_control(struct rt_i2c_bus_device *bus,
                          rt_uint32_t               cmd,
                          rt_uint32_t               arg)
{
    struct ls1c_i2c_bus * i2c_bus = (struct ls1c_i2c_bus *)bus;

    RT_ASSERT(bus != RT_NULL);
    i2c_bus = (struct ls1c_i2c_bus *)bus->parent.user_data;

    RT_ASSERT(i2c_bus != RT_NULL);

    switch (cmd)
    {
        case RT_DEVICE_CTRL_CONFIG :
            break;
    }

    return RT_EOK;
}

static const struct rt_i2c_bus_device_ops ls1c_i2c_ops =
{
    rt_i2c_master_xfer,
    RT_NULL,
    rt_i2c_bus_control
};


#ifdef RT_USING_I2C0
static struct ls1c_i2c_bus ls1c_i2c_bus_0 = 
{
    {1},
    LS1C_I2C_0,
};
#endif

#ifdef RT_USING_I2C1
static struct ls1c_i2c_bus ls1c_i2c_bus_1 = 
{
    {1},
    LS1C_I2C_1,
};
#endif

#ifdef RT_USING_I2C2
static struct ls1c_i2c_bus ls1c_i2c_bus_2 = 
{
    {1},
    LS1C_I2C_2,
};
#endif

111
int ls1c_hw_i2c_init(void)
112 113 114
{
    struct ls1c_i2c_bus* ls1c_i2c;

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
#ifdef RT_USING_I2C0
/*
    pin_set_purpose(2, PIN_PURPOSE_OTHER);
    pin_set_purpose(3, PIN_PURPOSE_OTHER);
    pin_set_remap(2, PIN_REMAP_SECOND);
    pin_set_remap(3, PIN_REMAP_SECOND);
    */
#endif
#ifdef RT_USING_I2C1
    pin_set_purpose(2, PIN_PURPOSE_OTHER);
    pin_set_purpose(3, PIN_PURPOSE_OTHER);
    pin_set_remap(2, PIN_REMAP_SECOND);
    pin_set_remap(3, PIN_REMAP_SECOND);
#endif
#ifdef RT_USING_I2C2
    pin_set_purpose(51, PIN_PURPOSE_OTHER);
    pin_set_purpose(50, PIN_PURPOSE_OTHER);
    pin_set_remap(51, PIN_REMAP_FOURTH);
    pin_set_remap(50, PIN_REMAP_FOURTH);
#endif


137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
#ifdef RT_USING_I2C0
    ls1c_i2c = &ls1c_i2c_bus_0;
    ls1c_i2c->parent.ops = &ls1c_i2c_ops;
    rt_i2c_bus_device_register(&ls1c_i2c->parent, "i2c0");
    rt_kprintf("i2c0_init!\n");
#endif
#ifdef RT_USING_I2C1
    ls1c_i2c = &ls1c_i2c_bus_1;
    ls1c_i2c->parent.ops = &ls1c_i2c_ops;
    rt_i2c_bus_device_register(&ls1c_i2c->parent, "i2c1");
    rt_kprintf("i2c1_init!\n");
#endif

#ifdef RT_USING_I2C2
    ls1c_i2c = &ls1c_i2c_bus_2;
    ls1c_i2c->parent.ops = &ls1c_i2c_ops;
    rt_i2c_bus_device_register(&ls1c_i2c->parent, "i2c2");
    rt_kprintf("i2c2_init!\n");
#endif

    return RT_EOK;
}
159 160 161 162

INIT_BOARD_EXPORT(ls1c_hw_i2c_init);

#endif