summaryrefslogtreecommitdiff
path: root/src/drivers/i2c/ww_ring/ww_ring.h
blob: f17f5e39b84eb078f61832e98c11828760b5e458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* This file is part of the coreboot project. */
/*
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __SRC_DRIVERS_VIDEO_WW_RING__H__
#define __SRC_DRIVERS_VIDEO_WW_RING__H__

/*
 * Different types of display patterns to be shown by the LED ring while
 * contrlled by coreboot.
 */
enum display_pattern {
	WWR_ALL_OFF,		/* Turn the LEDs off. */
	WWR_RECOVERY_PUSHED,	/* Recovery button push detected on start up. */
	WWR_WIPEOUT_REQUEST,	/* Held long enough for wipout request. */
	WWR_RECOVERY_REQUEST,	/* Held long enough for recovery request. */
	WWR_NORMAL_BOOT		/* No buttons pressed, normal boot sequence. */
};
/*
 * ww_ring_display_pattern
 *
 * Display pattern on the ring LEDs.
 */
int ww_ring_display_pattern(unsigned int i2c_bus, enum display_pattern pattern);

#endif