mirror of https://github.com/ARMmbed/mbed-os.git
122 lines
3.1 KiB
C
122 lines
3.1 KiB
C
/*******************************************************************************
|
|
* Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
|
|
*
|
|
* 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 MAXIM INTEGRATED 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.
|
|
*
|
|
* Except as contained in this notice, the name of Maxim Integrated
|
|
* Products, Inc. shall not be used except as stated in the Maxim Integrated
|
|
* Products, Inc. Branding Policy.
|
|
*
|
|
* The mere transfer of this software does not imply any licenses
|
|
* of trade secrets, proprietary technology, copyrights, patents,
|
|
* trademarks, maskwork rights, or any other form of intellectual
|
|
* property whatsoever. Maxim Integrated Products, Inc. retains all
|
|
* ownership rights.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef MBED_OBJECTS_H
|
|
#define MBED_OBJECTS_H
|
|
|
|
#include "cmsis.h"
|
|
#include "mxc_config.h"
|
|
#include "PortNames.h"
|
|
#include "PeripheralNames.h"
|
|
#include "PinNames.h"
|
|
#include "gpio_object.h"
|
|
#include "gpio_regs.h"
|
|
#include "uart_regs.h"
|
|
#include "i2cm_regs.h"
|
|
#include "spim_regs.h"
|
|
#include "pt_regs.h"
|
|
#include "adc_regs.h"
|
|
#include "uart.h"
|
|
#include "adc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct port_s {
|
|
PortName port;
|
|
uint32_t mask;
|
|
__IO uint32_t *reg_out;
|
|
__I uint32_t *reg_in;
|
|
PinMode mode;
|
|
};
|
|
|
|
struct flash_s {
|
|
uint8_t notused;
|
|
};
|
|
|
|
struct gpio_irq_s {
|
|
uint8_t port;
|
|
uint8_t pin;
|
|
uint8_t rise_en;
|
|
uint8_t fall_en;
|
|
uint32_t id;
|
|
};
|
|
|
|
struct serial_s {
|
|
int index;
|
|
mxc_uart_regs_t *uart;
|
|
mxc_uart_fifo_regs_t *fifo;
|
|
uint32_t id;
|
|
uart_cfg_t cfg;
|
|
sys_cfg_uart_t sys_cfg;
|
|
PinName tx;
|
|
PinName rx;
|
|
};
|
|
|
|
struct i2c_s {
|
|
mxc_i2cm_regs_t *i2c;
|
|
mxc_i2cm_fifo_regs_t *fifo;
|
|
int start_pending;
|
|
sys_cfg_i2cm_t sys_cfg;
|
|
};
|
|
|
|
struct spi_s {
|
|
int index;
|
|
mxc_spim_regs_t *spi;
|
|
};
|
|
|
|
struct pwmout_s {
|
|
mxc_pt_regs_t *pwm;
|
|
int period;
|
|
int pulse_width;
|
|
};
|
|
|
|
struct analogin_s {
|
|
mxc_adc_regs_t *adc;
|
|
mxc_adc_chsel_t channel;
|
|
};
|
|
|
|
typedef struct {
|
|
volatile uint32_t *reg_req;
|
|
volatile uint32_t *reg_ack;
|
|
uint32_t req_val;
|
|
uint32_t ack_mask;
|
|
} pin_function_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|