source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZ_A1H/gpio_api.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 1.7 KB
Line 
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
21uint32_t gpio_set(PinName pin) {
22 pin_function(pin, 0);
23 return (1 << PINNO(pin));
24}
25
26void 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
42void 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
46void 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}
Note: See TracBrowser for help on using the repository browser.