blob: d6c7eeb69377545d0c40162e0a830706f47fcf58 [file] [log] [blame]
Gabriel Huau5d889ae2012-05-02 10:49:55 +00001/*
2 * Copyright (C) 2012
3 * Gabriel Huau <contact@huau-gabriel.fr>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Gabriel Huau5d889ae2012-05-02 10:49:55 +00006 */
7#include <common.h>
8#include <asm/arch/s3c2440.h>
9#include <asm/gpio.h>
10#include <asm/io.h>
Marek Vasut13cfd102014-10-11 18:42:57 +020011#include <errno.h>
Gabriel Huau5d889ae2012-05-02 10:49:55 +000012
13#define GPIO_INPUT 0x0
14#define GPIO_OUTPUT 0x1
15
Marek Vasut13cfd102014-10-11 18:42:57 +020016#define S3C_GPIO_CON 0x0
17#define S3C_GPIO_DAT 0x4
Gabriel Huau5d889ae2012-05-02 10:49:55 +000018
Marek Vasut13cfd102014-10-11 18:42:57 +020019static uint32_t s3c_gpio_get_bank_addr(unsigned gpio)
20{
21 /* There is up to 16 pins per bank, one bank is 0x10 big. */
22 uint32_t addr = gpio & ~0xf;
23
24 if (addr >= 0x80 && addr != 0xd0) { /* Wrong GPIO bank. */
25 printf("Invalid GPIO bank (bank %02x)\n", addr);
26 return 0xffffffff;
27 }
28
29 return addr | S3C24X0_GPIO_BASE;
30}
Gabriel Huau5d889ae2012-05-02 10:49:55 +000031
32int gpio_set_value(unsigned gpio, int value)
33{
Marek Vasut13cfd102014-10-11 18:42:57 +020034 uint32_t addr = s3c_gpio_get_bank_addr(gpio);
Gabriel Huau5d889ae2012-05-02 10:49:55 +000035
Marek Vasut13cfd102014-10-11 18:42:57 +020036 if (addr == 0xffffffff)
37 return -EINVAL;
Gabriel Huau5d889ae2012-05-02 10:49:55 +000038
39 if (value)
Marek Vasut13cfd102014-10-11 18:42:57 +020040 setbits_le32(addr | S3C_GPIO_DAT, 1 << (gpio & 0xf));
Gabriel Huau5d889ae2012-05-02 10:49:55 +000041 else
Marek Vasut13cfd102014-10-11 18:42:57 +020042 clrbits_le32(addr | S3C_GPIO_DAT, 1 << (gpio & 0xf));
Gabriel Huau5d889ae2012-05-02 10:49:55 +000043
Marek Vasut13cfd102014-10-11 18:42:57 +020044 return 0;
Gabriel Huau5d889ae2012-05-02 10:49:55 +000045}
46
47int gpio_get_value(unsigned gpio)
48{
Marek Vasut13cfd102014-10-11 18:42:57 +020049 uint32_t addr = s3c_gpio_get_bank_addr(gpio);
Gabriel Huau5d889ae2012-05-02 10:49:55 +000050
Marek Vasut13cfd102014-10-11 18:42:57 +020051 if (addr == 0xffffffff)
52 return -EINVAL;
53
54 return !!(readl(addr | S3C_GPIO_DAT) & (1 << (gpio & 0xf)));
Gabriel Huau5d889ae2012-05-02 10:49:55 +000055}
56
57int gpio_request(unsigned gpio, const char *label)
58{
59 return 0;
60}
61
62int gpio_free(unsigned gpio)
63{
64 return 0;
65}
66
Marek Vasut13cfd102014-10-11 18:42:57 +020067static int s3c_gpio_direction(unsigned gpio, uint8_t dir)
68{
69 uint32_t addr = s3c_gpio_get_bank_addr(gpio);
70 const uint32_t mask = 0x3 << ((gpio & 0xf) << 1);
71 const uint32_t dirm = dir << ((gpio & 0xf) << 1);
72
73 if (addr == 0xffffffff)
74 return -EINVAL;
75
76 clrsetbits_le32(addr | S3C_GPIO_CON, mask, dirm);
77 return 0;
78}
79
Gabriel Huau5d889ae2012-05-02 10:49:55 +000080int gpio_direction_input(unsigned gpio)
81{
Marek Vasut13cfd102014-10-11 18:42:57 +020082 return s3c_gpio_direction(gpio, GPIO_INPUT);
Gabriel Huau5d889ae2012-05-02 10:49:55 +000083}
84
85int gpio_direction_output(unsigned gpio, int value)
86{
Marek Vasut13cfd102014-10-11 18:42:57 +020087 return s3c_gpio_direction(gpio, GPIO_OUTPUT);
Gabriel Huau5d889ae2012-05-02 10:49:55 +000088}