ac_callback.h 6.0 KB
Newer Older
X
xieyangrun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
/**
 * \file
 *
 * \brief SAM AC - Analog Comparator Callback Driver
 *
 * Copyright (C) 2013-2015 Atmel Corporation. All rights reserved.
 *
 * \asf_license_start
 *
 * \page License
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * 3. The name of Atmel may not be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * 4. This software may only be redistributed and used in connection with an
 *    Atmel microcontroller product.
 *
 * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
 * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * \asf_license_stop
 *
 */
/*
 * Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>
 */

#ifndef AC_CALLBACK_H_INCLUDED
#define AC_CALLBACK_H_INCLUDED

#include <compiler.h>
#include <system_interrupt.h>
#include "ac.h"

#ifdef __cplusplus
extern "C" {
#endif

#if (AC_INST_NUM > 1) && !defined(__DOXYGEN__)
/**
 * \internal Get the interrupt vector for the given device instance
 *
 * \param[in] TC module instance number
 *
 * \return Interrupt vector for of the given TC module instance.
 */
static enum system_interrupt_vector _ac_interrupt_get_interrupt_vector(
		uint32_t inst_num)
{
	static uint8_t ac_interrupt_vectors[AC_INST_NUM] =
		{
			SYSTEM_INTERRUPT_MODULE_AC,
#if (AC_INST_NUM == 2)
			SYSTEM_INTERRUPT_MODULE_AC1,
#endif
#if (AC_INST_NUM >= 3)
#  error This driver is not support more than three AC instances.
#endif
		};

	return ac_interrupt_vectors[inst_num];
}
#endif /* (AC_INST_NUM > 1) !defined(__DOXYGEN__)*/

/**
 * \name Callback Management
 * {@
 */

enum status_code ac_register_callback(
		struct ac_module *const module,
		ac_callback_t callback_func,
		const enum ac_callback callback_type);

enum status_code ac_unregister_callback(
		struct ac_module *const module,
		const enum ac_callback callback_type);

/**
 * \brief Enables callback.
 *
 * Enables the callback function registered by the \ref
 * ac_register_callback. The callback function will be called from the
 * interrupt handler when the conditions for the callback type are
 * met. This function will also enable the appropriate interrupts.
 *
 * \param[in]     module Pointer to AC software instance struct
 * \param[in]     callback_type Callback type given by an enum
 */
static inline void ac_enable_callback(
		struct ac_module *const module,
		const enum ac_callback callback_type)
{
	/* Sanity check arguments */
	Assert(module);

	/* Set software flag for the callback */
	module->enable_callback_mask |= (1 << callback_type);

	uint32_t inenset_temp = 0;

	switch (callback_type)
	{
		case AC_CALLBACK_COMPARATOR_0:
			inenset_temp |= AC_INTFLAG_COMP0;
			break;
		case AC_CALLBACK_COMPARATOR_1:
			inenset_temp |= AC_INTFLAG_COMP1;
			break;
		case AC_CALLBACK_WINDOW_0:
			inenset_temp |= AC_INTFLAG_WIN0;
			break;
#if (AC_NUM_CMP > 2)
		case AC_CALLBACK_COMPARATOR_2:
			inenset_temp |= AC_INTFLAG_COMP2;
			break;
		case AC_CALLBACK_COMPARATOR_3:
			inenset_temp |= AC_INTFLAG_COMP3;
			break;
#  if !(SAMC20)
		case AC_CALLBACK_WINDOW_1:
			inenset_temp |= AC_INTFLAG_WIN1;
			break;
#  endif
#endif
		default:
			break;
	}

	/* Enable the interrupt for the callback */
	module->hw->INTENSET.reg = inenset_temp;

#if (AC_INST_NUM == 1)
	/* Enable interrupts for AC module */
	system_interrupt_enable(SYSTEM_INTERRUPT_MODULE_AC);
#elif (AC_INST_NUM > 1)
	system_interrupt_enable(_ac_interrupt_get_interrupt_vector(_ac_get_inst_index(module->hw)));
#endif /* (AC_INST_NUM > 1) */
}

/**
 * \brief Disables callback.
 *
 * Disables the callback function registered by the \ref
 * ac_register_callback, and the callback will not be called from the
 * interrupt routine. The function will also disable the appropriate
 * interrupts.
 *
 * \param[in]     module Pointer to AC software instance struct
 * \param[in]     callback_type Callback type given by an enum
 */
static inline void ac_disable_callback(
		struct ac_module *const module,
		const enum ac_callback callback_type)
{
	/* Sanity check arguments */
	Assert(module);

	/* Clear software flag for the callback */
	module->enable_callback_mask &= ~(1 << callback_type);

	uint32_t inenclr_temp = 0;

	switch (callback_type)
	{
		case AC_CALLBACK_COMPARATOR_0:
			inenclr_temp |= AC_INTFLAG_COMP0;
			break;
		case AC_CALLBACK_COMPARATOR_1:
			inenclr_temp |= AC_INTFLAG_COMP1;
			break;
		case AC_CALLBACK_WINDOW_0:
			inenclr_temp |= AC_INTFLAG_WIN0;
			break;
#if (AC_NUM_CMP > 2)
		case AC_CALLBACK_COMPARATOR_2:
			inenclr_temp |= AC_INTFLAG_COMP2;
			break;
		case AC_CALLBACK_COMPARATOR_3:
			inenclr_temp |= AC_INTFLAG_COMP3;
			break;
#  if !(SAMC20)
		case AC_CALLBACK_WINDOW_1:
			inenclr_temp |= AC_INTFLAG_WIN1;
			break;
#  endif
#endif
		default:
			break;
	}

	/* Disable the interrupt for the callback */
	module->hw->INTENCLR.reg = inenclr_temp;
}

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif /* AC_CALLBACK_H_INCLUDED */