mbed library sources

Fork of mbed-src by mbed official

Committer:
lzbpli
Date:
Thu Jul 07 06:48:59 2016 +0000
Revision:
636:b0d178e9fa10
Parent:
507:d4fc7603a669
l053

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 507:d4fc7603a669 1 /*******************************************************************************
mbed_official 507:d4fc7603a669 2 * Copyright (C) 2015 Maxim Integrated Products, Inc., All Rights Reserved.
mbed_official 507:d4fc7603a669 3 *
mbed_official 507:d4fc7603a669 4 * Permission is hereby granted, free of charge, to any person obtaining a
mbed_official 507:d4fc7603a669 5 * copy of this software and associated documentation files (the "Software"),
mbed_official 507:d4fc7603a669 6 * to deal in the Software without restriction, including without limitation
mbed_official 507:d4fc7603a669 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
mbed_official 507:d4fc7603a669 8 * and/or sell copies of the Software, and to permit persons to whom the
mbed_official 507:d4fc7603a669 9 * Software is furnished to do so, subject to the following conditions:
mbed_official 507:d4fc7603a669 10 *
mbed_official 507:d4fc7603a669 11 * The above copyright notice and this permission notice shall be included
mbed_official 507:d4fc7603a669 12 * in all copies or substantial portions of the Software.
mbed_official 507:d4fc7603a669 13 *
mbed_official 507:d4fc7603a669 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
mbed_official 507:d4fc7603a669 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
mbed_official 507:d4fc7603a669 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
mbed_official 507:d4fc7603a669 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
mbed_official 507:d4fc7603a669 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
mbed_official 507:d4fc7603a669 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
mbed_official 507:d4fc7603a669 20 * OTHER DEALINGS IN THE SOFTWARE.
mbed_official 507:d4fc7603a669 21 *
mbed_official 507:d4fc7603a669 22 * Except as contained in this notice, the name of Maxim Integrated
mbed_official 507:d4fc7603a669 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
mbed_official 507:d4fc7603a669 24 * Products, Inc. Branding Policy.
mbed_official 507:d4fc7603a669 25 *
mbed_official 507:d4fc7603a669 26 * The mere transfer of this software does not imply any licenses
mbed_official 507:d4fc7603a669 27 * of trade secrets, proprietary technology, copyrights, patents,
mbed_official 507:d4fc7603a669 28 * trademarks, maskwork rights, or any other form of intellectual
mbed_official 507:d4fc7603a669 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
mbed_official 507:d4fc7603a669 30 * ownership rights.
mbed_official 507:d4fc7603a669 31 *******************************************************************************
mbed_official 507:d4fc7603a669 32 */
mbed_official 507:d4fc7603a669 33
mbed_official 507:d4fc7603a669 34 #ifndef MBED_OBJECTS_H
mbed_official 507:d4fc7603a669 35 #define MBED_OBJECTS_H
mbed_official 507:d4fc7603a669 36
mbed_official 507:d4fc7603a669 37 #include "cmsis.h"
mbed_official 507:d4fc7603a669 38 #include "PortNames.h"
mbed_official 507:d4fc7603a669 39 #include "PeripheralNames.h"
mbed_official 507:d4fc7603a669 40 #include "PinNames.h"
mbed_official 507:d4fc7603a669 41 #include "gpio_object.h"
mbed_official 507:d4fc7603a669 42 #include "gpio_regs.h"
mbed_official 507:d4fc7603a669 43 #include "uart_regs.h"
mbed_official 507:d4fc7603a669 44 #include "i2cm_regs.h"
mbed_official 507:d4fc7603a669 45 #include "spi_regs.h"
mbed_official 507:d4fc7603a669 46 #include "pt_regs.h"
mbed_official 507:d4fc7603a669 47 #include "adc_regs.h"
mbed_official 507:d4fc7603a669 48 #include "dac_regs.h"
mbed_official 507:d4fc7603a669 49
mbed_official 507:d4fc7603a669 50 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 51 extern "C" {
mbed_official 507:d4fc7603a669 52 #endif
mbed_official 507:d4fc7603a669 53
mbed_official 507:d4fc7603a669 54 struct port_s {
mbed_official 507:d4fc7603a669 55 PortName port;
mbed_official 507:d4fc7603a669 56 uint32_t mask;
mbed_official 507:d4fc7603a669 57 __IO uint32_t *reg_out;
mbed_official 507:d4fc7603a669 58 __I uint32_t *reg_in;
mbed_official 507:d4fc7603a669 59 };
mbed_official 507:d4fc7603a669 60
mbed_official 507:d4fc7603a669 61 struct gpio_irq_s {
mbed_official 507:d4fc7603a669 62 uint8_t port;
mbed_official 507:d4fc7603a669 63 uint8_t pin;
mbed_official 507:d4fc7603a669 64 };
mbed_official 507:d4fc7603a669 65
mbed_official 507:d4fc7603a669 66 struct serial_s {
mbed_official 507:d4fc7603a669 67 int index;
mbed_official 507:d4fc7603a669 68 mxc_uart_regs_t *uart;
mbed_official 507:d4fc7603a669 69 };
mbed_official 507:d4fc7603a669 70
mbed_official 507:d4fc7603a669 71 struct i2c_s {
mbed_official 507:d4fc7603a669 72 int index;
mbed_official 507:d4fc7603a669 73 mxc_i2cm_regs_t *i2c;
mbed_official 507:d4fc7603a669 74 volatile uint16_t *txfifo;
mbed_official 507:d4fc7603a669 75 volatile uint16_t *rxfifo;
mbed_official 507:d4fc7603a669 76 int start_pending;
mbed_official 507:d4fc7603a669 77 int stop_pending;
mbed_official 507:d4fc7603a669 78 };
mbed_official 507:d4fc7603a669 79
mbed_official 507:d4fc7603a669 80 struct spi_s {
mbed_official 507:d4fc7603a669 81 int index;
mbed_official 507:d4fc7603a669 82 mxc_spi_regs_t *spi;
mbed_official 507:d4fc7603a669 83 mxc_spi_rxfifo_regs_t *rxfifo;
mbed_official 507:d4fc7603a669 84 mxc_spi_txfifo_regs_t *txfifo;
mbed_official 507:d4fc7603a669 85 };
mbed_official 507:d4fc7603a669 86
mbed_official 507:d4fc7603a669 87 struct pwmout_s {
mbed_official 507:d4fc7603a669 88 mxc_pt_regs_t *pwm;
mbed_official 507:d4fc7603a669 89 int period;
mbed_official 507:d4fc7603a669 90 int pulse_width;
mbed_official 507:d4fc7603a669 91 };
mbed_official 507:d4fc7603a669 92
mbed_official 507:d4fc7603a669 93 struct analogin_s {
mbed_official 507:d4fc7603a669 94 mxc_adc_regs_t *adc;
mbed_official 507:d4fc7603a669 95 mxc_adccfg_regs_t *adccfg;
mbed_official 507:d4fc7603a669 96 mxc_adc_fifo_regs_t * adc_fifo;
mbed_official 507:d4fc7603a669 97 PinName adc_pin;
mbed_official 507:d4fc7603a669 98 };
mbed_official 507:d4fc7603a669 99
mbed_official 507:d4fc7603a669 100 struct dac_s {
mbed_official 507:d4fc7603a669 101 int index;
mbed_official 507:d4fc7603a669 102 uint16_t out;
mbed_official 507:d4fc7603a669 103 mxc_dac_regs_t *dac;
mbed_official 507:d4fc7603a669 104 mxc_dac_fifo_t * dac_fifo;
mbed_official 507:d4fc7603a669 105 };
mbed_official 507:d4fc7603a669 106
mbed_official 507:d4fc7603a669 107 typedef struct {
mbed_official 507:d4fc7603a669 108 volatile uint32_t *reg_req;
mbed_official 507:d4fc7603a669 109 volatile uint32_t *reg_ack;
mbed_official 507:d4fc7603a669 110 uint32_t req_val;
mbed_official 507:d4fc7603a669 111 uint32_t ack_mask;
mbed_official 507:d4fc7603a669 112 } pin_function_t;
mbed_official 507:d4fc7603a669 113
mbed_official 507:d4fc7603a669 114 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 115 }
mbed_official 507:d4fc7603a669 116 #endif
mbed_official 507:d4fc7603a669 117
mbed_official 507:d4fc7603a669 118 #endif