circuitpython/ports/stm32f4/common-hal/microcontroller/Pin.c

93 lines
3.0 KiB
C
Raw Normal View History

2019-06-28 15:36:08 -04:00
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
2019-07-24 14:21:27 -04:00
* Copyright (c) 2019 Lucian Copeland for Adafruit Industries
2019-06-28 15:36:08 -04:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "shared-bindings/microcontroller/Pin.h"
#include "py/mphal.h"
2019-07-17 14:07:33 -04:00
#include "stm32f4/pins.h"
#include "stm32f4xx_hal.h"
2019-06-28 15:36:08 -04:00
2019-08-07 18:12:13 -04:00
#if MCU_PACKAGE == 144
#define GPIO_PORT_COUNT 7
GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE, GPIOF, GPIOG};
#elif MCU_PACKAGE == 100
#define GPIO_PORT_COUNT 5
GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE};
#endif
2019-06-28 15:36:08 -04:00
2019-07-17 14:07:33 -04:00
STATIC uint16_t claimed_pins[GPIO_PORT_COUNT];
STATIC uint16_t never_reset_pins[GPIO_PORT_COUNT];
2019-06-28 15:36:08 -04:00
void reset_all_pins(void) {
2019-07-17 14:07:33 -04:00
// Reset claimed pins
for (uint8_t i = 0; i < GPIO_PORT_COUNT; i++) {
2019-06-28 15:36:08 -04:00
claimed_pins[i] = never_reset_pins[i];
}
2019-07-17 14:07:33 -04:00
for (uint8_t i = 0; i < GPIO_PORT_COUNT; i++) {
HAL_GPIO_DeInit(ports[i], ~never_reset_pins[i]);
2019-06-28 15:36:08 -04:00
}
}
// Mark pin as free and return it to a quiescent state.
2019-09-11 13:12:49 -04:00
void reset_pin_number(uint8_t pin_port, uint8_t pin_number) {
if (pin_port == 0x00) {
2019-06-28 15:36:08 -04:00
return;
}
// Clear claimed bit.
2019-09-11 13:12:49 -04:00
claimed_pins[pin_port] &= ~(1<<pin_number);
2019-07-17 14:07:33 -04:00
// Reset the pin
2019-09-11 13:12:49 -04:00
HAL_GPIO_DeInit(ports[pin_port], 1<<pin_number);
2019-06-28 15:36:08 -04:00
}
2019-09-11 13:12:49 -04:00
void never_reset_pin_number(uint8_t pin_port, uint8_t pin_number) {
never_reset_pins[pin_port] |= 1<<pin_number;
2019-06-28 15:36:08 -04:00
}
void claim_pin(const mcu_pin_obj_t* pin) {
// Set bit in claimed_pins bitmask.
2019-09-11 13:12:49 -04:00
claimed_pins[pin->port] |= 1<<pin->number;
2019-06-28 15:36:08 -04:00
}
2019-09-11 13:12:49 -04:00
bool pin_number_is_free(uint8_t pin_port, uint8_t pin_number) {
return !(claimed_pins[pin_port] & 1<<pin_number);
2019-06-28 15:36:08 -04:00
}
bool common_hal_mcu_pin_is_free(const mcu_pin_obj_t *pin) {
2019-09-11 13:12:49 -04:00
return pin_number_is_free(pin->port, pin->number);
}
2019-06-28 15:36:08 -04:00
2019-09-11 13:12:49 -04:00
GPIO_TypeDef * pin_port(uint8_t pin_port) {
return ports[pin_port];
}
2019-06-28 15:36:08 -04:00
2019-09-11 13:12:49 -04:00
//TODO: replace with macro?
uint16_t pin_mask(uint8_t pin_number) {
return 1<<pin_number;
2019-06-28 15:36:08 -04:00
}