summaryrefslogtreecommitdiffstats
path: root/firmware/target/mips/ingenic_x1000/gpio-x1000.c
blob: 8e93f865bffff13251ef012eccb62aa84d62194b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2021 Aidan MacDonald
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include "gpio-x1000.h"
#include "kernel.h"

#ifndef BOOTLOADER_SPL
struct mutex gpio_z_mutex;
#endif

void gpio_init(void)
{
#ifndef BOOTLOADER_SPL
    mutex_init(&gpio_z_mutex);
#endif

    /* Any GPIO pins left in an IRQ trigger state need to be switched off,
     * because the drivers won't be ready to handle the interrupts until they
     * get initialized later in the boot. */
    for(int i = 0; i < 4; ++i) {
        uint32_t intbits = REG_GPIO_INT(i);
        if(intbits) {
            gpio_config(i, intbits, GPIO_INPUT);
            jz_clr(GPIO_FLAG(i), intbits);
        }
    }
}

void gpio_lock(void)
{
#ifndef BOOTLOADER_SPL
    mutex_lock(&gpio_z_mutex);
#endif
}

void gpio_unlock(void)
{
#ifndef BOOTLOADER_SPL
    mutex_unlock(&gpio_z_mutex);
#endif
}

void gpio_config(int port, unsigned pinmask, int func)
{
    unsigned intr = REG_GPIO_INT(port);
    unsigned mask = REG_GPIO_MSK(port);
    unsigned pat1 = REG_GPIO_PAT1(port);
    unsigned pat0 = REG_GPIO_PAT0(port);

    gpio_lock();
    if(func & 8) jz_set(GPIO_INT(GPIO_Z), (intr & pinmask) ^ pinmask);
    else         jz_clr(GPIO_INT(GPIO_Z), (~intr & pinmask) ^ pinmask);
    if(func & 4) jz_set(GPIO_MSK(GPIO_Z), (mask & pinmask) ^ pinmask);
    else         jz_clr(GPIO_MSK(GPIO_Z), (~mask & pinmask) ^ pinmask);
    if(func & 2) jz_set(GPIO_PAT1(GPIO_Z), (pat1 & pinmask) ^ pinmask);
    else         jz_clr(GPIO_PAT1(GPIO_Z), (~pat1 & pinmask) ^ pinmask);
    if(func & 1) jz_set(GPIO_PAT0(GPIO_Z), (pat0 & pinmask) ^ pinmask);
    else         jz_clr(GPIO_PAT0(GPIO_Z), (~pat0 & pinmask) ^ pinmask);
    REG_GPIO_Z_GID2LD = port;
    gpio_unlock();
    gpio_set_pull(port, pinmask, func & 16);
}