mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
These boards are unloved and unsupported. They'll never grow up to be laptops, and hardware is increasingly hard to come by. Comparable functionality is available in the other, more-loved boards. Removing these boards speeds up util/make_all.sh by 40%. (If you're not running that before every upload, you should be...) BUG=chrome-os-partner:24062 BRANCH=none TEST=build all remaining platforms and pass unit tests Change-Id: I4d8a49e4d52d7393471f1b1cbef059c8db4a4f77 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/177373
52 lines
907 B
C
52 lines
907 B
C
/* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
/* Module IDs for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_MODULE_ID_H
|
|
#define __CROS_EC_MODULE_ID_H
|
|
|
|
#include "common.h"
|
|
|
|
enum module_id {
|
|
MODULE_ADC,
|
|
MODULE_CHARGER,
|
|
MODULE_CHIPSET,
|
|
MODULE_CLOCK,
|
|
MODULE_COMMAND,
|
|
MODULE_DMA,
|
|
MODULE_EXTPOWER,
|
|
MODULE_GPIO,
|
|
MODULE_HOOK,
|
|
MODULE_HOST_COMMAND,
|
|
MODULE_HOST_EVENT,
|
|
MODULE_I2C,
|
|
MODULE_KEYBOARD,
|
|
MODULE_KEYBOARD_SCAN,
|
|
MODULE_LIGHTBAR,
|
|
MODULE_LPC,
|
|
MODULE_PECI,
|
|
MODULE_PMU,
|
|
MODULE_PORT80,
|
|
MODULE_POWER_LED,
|
|
MODULE_PWM_FAN,
|
|
MODULE_PWM_KBLIGHT,
|
|
MODULE_PWM_LED,
|
|
MODULE_SPI,
|
|
MODULE_SWITCH,
|
|
MODULE_SYSTEM,
|
|
MODULE_TASK,
|
|
MODULE_THERMAL,
|
|
MODULE_UART,
|
|
MODULE_USB_PORT_POWER,
|
|
MODULE_USB_SWITCH,
|
|
MODULE_VBOOT,
|
|
|
|
/* Module count; not an actual module */
|
|
MODULE_COUNT
|
|
};
|
|
|
|
#endif
|