mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Provide test coverage for the new expo object type, including building and reading/writing settings. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			33 lines
		
	
	
		
			623 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			623 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Binding shared between cedit.dtsi and test/boot/expo.c
 | 
						|
 *
 | 
						|
 * Copyright 2023 Google LLC
 | 
						|
 * Written by Simon Glass <sjg@chromium.org>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __cedit_test_h
 | 
						|
#define __cedit_test_h
 | 
						|
 | 
						|
#define ID_PROMPT		1
 | 
						|
#define ID_SCENE1		2
 | 
						|
#define ID_SCENE1_TITLE		3
 | 
						|
 | 
						|
#define ID_CPU_SPEED		4
 | 
						|
#define ID_CPU_SPEED_TITLE	5
 | 
						|
#define ID_CPU_SPEED_1		6
 | 
						|
#define ID_CPU_SPEED_2		7
 | 
						|
#define ID_CPU_SPEED_3		8
 | 
						|
 | 
						|
#define ID_POWER_LOSS		9
 | 
						|
#define ID_AC_OFF		10
 | 
						|
#define ID_AC_ON		11
 | 
						|
#define ID_AC_MEMORY		12
 | 
						|
 | 
						|
#define ID_MACHINE_NAME		13
 | 
						|
#define ID_MACHINE_NAME_EDIT	14
 | 
						|
 | 
						|
#define ID_DYNAMIC_START	15
 | 
						|
 | 
						|
#endif
 |