]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_RENESAS/TARGET_RZ_A1H/gpio_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_RENESAS / TARGET_RZ_A1H / gpio_api.c
1 /* mbed Microcontroller Library
2  * Copyright (c) 2006-2013 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "gpio_api.h"
17 #include "pinmap.h"
18 #include "gpio_addrdefine.h"
19
20
21 uint32_t gpio_set(PinName pin) {
22     pin_function(pin, 0);
23     return (1 << PINNO(pin));
24 }
25
26 void gpio_init(gpio_t *obj, PinName pin) {
27     int group ;
28     obj->pin = pin;
29     if(pin == NC) return;
30     
31     obj->mask = gpio_set(pin);
32
33     group = PINGROUP(pin);
34     if (group > 11) return;
35
36     obj->reg_set = (volatile uint32_t *) PSR(group);
37     obj->reg_in  = (volatile uint32_t *) PPR(group);
38     obj->reg_dir = (volatile uint32_t *)PMSR(group);
39     obj->reg_buf = (volatile uint32_t *)PIBC(group);
40 }
41
42 void gpio_mode(gpio_t *obj, PinMode mode) {
43 /* Pull up and Pull down settings aren't supported because RZ/A1H doesn't have pull up/down for pins(signals). */
44 }
45
46 void gpio_dir(gpio_t *obj, PinDirection direction) {
47     switch (direction) {
48         case PIN_INPUT :
49             *obj->reg_dir = (obj->mask << 16) | obj->mask;
50             *obj->reg_buf |=  obj->mask;
51             break;
52         case PIN_OUTPUT:
53             *obj->reg_dir = (obj->mask << 16) | 0;
54             *obj->reg_buf &= ~obj->mask;
55             break;
56     }
57 }