2016-11-03 18:50:59 -04:00
|
|
|
/*
|
2017-08-27 15:02:50 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-11-03 18:50:59 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* 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 <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-02-24 09:13:07 -05:00
|
|
|
#include "py/mperrno.h"
|
2016-11-03 18:50:59 -04:00
|
|
|
#include "py/runtime.h"
|
|
|
|
|
2017-04-10 16:32:19 -04:00
|
|
|
#include "shared-bindings/analogio/AnalogOut.h"
|
2017-11-14 21:22:16 -05:00
|
|
|
#include "shared-bindings/microcontroller/Pin.h"
|
2016-11-03 18:50:59 -04:00
|
|
|
|
2017-11-14 21:22:16 -05:00
|
|
|
#include "atmel_start_pins.h"
|
|
|
|
#include "hal/include/hal_dac_sync.h"
|
|
|
|
#include "hpl/gclk/hpl_gclk_base.h"
|
|
|
|
|
|
|
|
#ifdef SAMD21
|
|
|
|
#include "hpl/pm/hpl_pm_base.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SAMD51
|
|
|
|
#include "samd51_pins.h"
|
|
|
|
#endif
|
2016-11-03 18:50:59 -04:00
|
|
|
|
2017-04-10 16:32:19 -04:00
|
|
|
void common_hal_analogio_analogout_construct(analogio_analogout_obj_t* self,
|
2016-11-03 18:50:59 -04:00
|
|
|
const mcu_pin_obj_t *pin) {
|
2017-11-14 21:22:16 -05:00
|
|
|
if (pin->pin != PIN_PA02
|
|
|
|
#ifdef SAMD51
|
|
|
|
&& pin->pin != PIN_PA05
|
|
|
|
#endif
|
|
|
|
) {
|
2017-02-24 09:13:07 -05:00
|
|
|
mp_raise_ValueError("AnalogOut not supported on given pin");
|
2016-11-03 18:50:59 -04:00
|
|
|
return;
|
|
|
|
}
|
2017-11-14 21:22:16 -05:00
|
|
|
|
|
|
|
self->channel = 0;
|
|
|
|
#ifdef SAMD51
|
|
|
|
if (pin->pin == PIN_PA05) {
|
|
|
|
self->channel = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SAMD51
|
|
|
|
hri_mclk_set_APBDMASK_DAC_bit(MCLK);
|
|
|
|
hri_gclk_write_PCHCTRL_reg(GCLK, DAC_GCLK_ID, GCLK_PCHCTRL_GEN_GCLK5_Val | (1 << GCLK_PCHCTRL_CHEN_Pos));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SAMD21
|
|
|
|
_pm_enable_bus_clock(PM_BUS_APBC, DAC);
|
|
|
|
_gclk_enable_channel(DAC_GCLK_ID, GCLK_CLKCTRL_GEN_GCLK0_Val);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Don't double init the DAC on the SAMD51 when both outputs are in use. We use the free state
|
|
|
|
// of each output pin to determine DAC state.
|
|
|
|
int32_t result = ERR_NONE;
|
|
|
|
#ifdef SAMD51
|
|
|
|
if (!common_hal_mcu_pin_is_free(&pin_PA02) || !common_hal_mcu_pin_is_free(&pin_PA05)) {
|
|
|
|
#endif
|
|
|
|
// Fake the descriptor if the DAC is already initialized.
|
|
|
|
self->descriptor.device.hw = DAC;
|
|
|
|
#ifdef SAMD51
|
|
|
|
} else {
|
|
|
|
#endif
|
|
|
|
result = dac_sync_init(&self->descriptor, DAC);
|
|
|
|
#ifdef SAMD51
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (result != ERR_NONE) {
|
2017-02-24 09:13:07 -05:00
|
|
|
mp_raise_OSError(MP_EIO);
|
2016-11-03 18:50:59 -04:00
|
|
|
return;
|
|
|
|
}
|
2017-04-12 18:24:50 -04:00
|
|
|
claim_pin(pin);
|
2016-11-03 18:50:59 -04:00
|
|
|
|
2017-11-14 21:22:16 -05:00
|
|
|
gpio_set_pin_function(pin->pin, GPIO_PIN_FUNCTION_B);
|
2016-11-03 18:50:59 -04:00
|
|
|
|
2017-11-14 21:22:16 -05:00
|
|
|
dac_sync_enable_channel(&self->descriptor, self->channel);
|
2016-11-03 18:50:59 -04:00
|
|
|
}
|
|
|
|
|
2017-10-02 20:49:40 -04:00
|
|
|
bool common_hal_analogio_analogout_deinited(analogio_analogout_obj_t *self) {
|
|
|
|
return self->deinited;
|
|
|
|
}
|
|
|
|
|
2017-04-10 16:32:19 -04:00
|
|
|
void common_hal_analogio_analogout_deinit(analogio_analogout_obj_t *self) {
|
2017-10-02 20:49:40 -04:00
|
|
|
if (common_hal_analogio_analogout_deinited(self)) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-14 21:22:16 -05:00
|
|
|
dac_sync_disable_channel(&self->descriptor, self->channel);
|
2016-12-06 13:31:38 -05:00
|
|
|
reset_pin(PIN_PA02);
|
2017-11-14 21:22:16 -05:00
|
|
|
// Only deinit the DAC on the SAMD51 if both outputs are free.
|
|
|
|
#ifdef SAMD51
|
|
|
|
if (common_hal_mcu_pin_is_free(&pin_PA02) && common_hal_mcu_pin_is_free(&pin_PA05)) {
|
|
|
|
#endif
|
|
|
|
dac_sync_deinit(&self->descriptor);
|
|
|
|
#ifdef SAMD51
|
|
|
|
}
|
|
|
|
#endif
|
2017-10-02 20:49:40 -04:00
|
|
|
self->deinited = true;
|
2017-11-14 21:22:16 -05:00
|
|
|
// TODO(tannewt): Turn off the DAC clocks to save power.
|
2016-11-03 18:50:59 -04:00
|
|
|
}
|
|
|
|
|
2017-04-10 16:32:19 -04:00
|
|
|
void common_hal_analogio_analogout_set_value(analogio_analogout_obj_t *self,
|
2016-11-03 18:50:59 -04:00
|
|
|
uint16_t value) {
|
2017-11-14 21:22:16 -05:00
|
|
|
// Input is 16 bit so make sure and set LEFTADJ to 1 to it takes the top
|
|
|
|
// bits. This is currently done in asf4_conf/*/hpl_dac_config.h.
|
|
|
|
dac_sync_write(&self->descriptor, self->channel, &value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void analogout_reset(void) {
|
|
|
|
#ifdef SAMD21
|
|
|
|
while (DAC->STATUS.reg & DAC_STATUS_SYNCBUSY) {}
|
|
|
|
#endif
|
|
|
|
#ifdef SAMD51
|
|
|
|
while (DAC->SYNCBUSY.reg & DAC_SYNCBUSY_SWRST) {}
|
|
|
|
#endif
|
|
|
|
DAC->CTRLA.reg |= DAC_CTRLA_SWRST;
|
|
|
|
|
|
|
|
// TODO(tannewt): Turn off the DAC clocks to save power.
|
2016-11-03 18:50:59 -04:00
|
|
|
}
|