blob: 75a9da544a9d680d796a180c83b7ad0f8118f0e4 [file] [log] [blame]
Stefan Reinauer155e9b52012-04-27 23:19:58 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer155e9b52012-04-27 23:19:58 +020014 */
15
16#ifndef LUMPY_ONBOARD_H
17#define LUMPY_ONBOARD_H
18
Kyösti Mälkkib9cd5ec2015-04-24 16:05:58 +030019#define BOARD_LIGHTSENSOR_NAME "lightsensor"
20#define BOARD_LIGHTSENSOR_I2C_ADDR 0x44
21#define BOARD_LIGHTSENSOR_IRQ 20
Stefan Reinauer155e9b52012-04-27 23:19:58 +020022
Kyösti Mälkkib9cd5ec2015-04-24 16:05:58 +030023#define BOARD_TRACKPAD_NAME "trackpad"
24#define BOARD_TRACKPAD_I2C_ADDR 0x67
25#define BOARD_TRACKPAD_IRQ 21
26#define BOARD_TRACKPAD_WAKE_GPIO 0x1b
Stefan Reinauer155e9b52012-04-27 23:19:58 +020027
28#endif