blob: f3034233af185645ad7e95ba84d8e749fe17292b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <inttypes.h>
#include "os/mynewt.h"
#include <bsp/bsp.h>
#include "hal/hal_flash_int.h"
#include "flash_map/flash_map.h"
#include "uart/uart.h"
#include "uart_hal/uart_hal.h"
#include "mcu/native_bsp.h"
#include "mcu/mcu_hal.h"
#if MYNEWT_VAL(SIM_ACCEL_PRESENT)
#include "sim/sim_accel.h"
static struct sim_accel os_bsp_accel0;
#endif
static struct uart_dev os_bsp_uart0;
static struct uart_dev os_bsp_uart1;
const struct hal_flash *
hal_bsp_flash_dev(uint8_t id)
{
/*
* Just one to start with
*/
if (id != 0) {
return NULL;
}
return &native_flash_dev;
}
int
hal_bsp_power_state(int state)
{
return (0);
}
#if MYNEWT_VAL(SIM_ACCEL_PRESENT)
int
simaccel_init(struct os_dev *odev, void *arg)
{
return 0;
}
#endif
void
hal_bsp_init(void)
{
int rc;
rc = os_dev_create((struct os_dev *) &os_bsp_uart0, "uart0",
OS_DEV_INIT_PRIMARY, 0, uart_hal_init, (void *) NULL);
assert(rc == 0);
rc = os_dev_create((struct os_dev *) &os_bsp_uart1, "uart1",
OS_DEV_INIT_PRIMARY, 0, uart_hal_init, (void *) NULL);
assert(rc == 0);
#if MYNEWT_VAL(SIM_ACCEL_PRESENT)
rc = os_dev_create((struct os_dev *) &os_bsp_accel0, "simaccel0",
OS_DEV_INIT_PRIMARY, 0, simaccel_init, (void *) NULL);
assert(rc == 0);
#endif
}