summaryrefslogtreecommitdiff
path: root/board/hadoken/board.c
blob: 24c71882e5f1eefaf8daaf72b09eb4ef6ab5c0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include "gpio.h"
#include "registers.h"
#include "i2c.h"
#include "util.h"


/* To define the gpio_list[] instance. */
#include "gpio_list.h"

/* I2C ports */
const struct i2c_port_t i2c_ports[] = {
	{"master", 0 /*Port*/, 100 /*Kbps*/, GPIO_MCU_SCL, GPIO_MCU_SDA},
};

const unsigned int i2c_ports_used = ARRAY_SIZE(i2c_ports);