Files
cubelinux-kernel/arch/powerpc/boot/planetcore.h
T
Greg Kroah-Hartman 598cf27219 Linux 6.19.3
Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com>
Tested-by: Peter Schneider <pschneider1968@googlemail.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Tested-by: Brett A C Sheffield <bacs@librecast.net>
Tested-by: Mark Brown <broonie@kernel.org>
Tested-by: Luna Jernberg <droidbittin@gmail.com>
Tested-by: Ronald Warsow <rwarsow@gmx.de>
Tested-by: Justin M. Forbes <jforbes@fedoraproject.org>
Tested-by: Ron Economos <re@w6rz.net>
Tested-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-02-19 16:33:27 +01:00

48 lines
1.5 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _PPC_BOOT_PLANETCORE_H_
#define _PPC_BOOT_PLANETCORE_H_
#include "types.h"
#define PLANETCORE_KEY_BOARD_TYPE "BO"
#define PLANETCORE_KEY_BOARD_REV "BR"
#define PLANETCORE_KEY_MB_RAM "D1"
#define PLANETCORE_KEY_MAC_ADDR "EA"
#define PLANETCORE_KEY_FLASH_SPEED "FS"
#define PLANETCORE_KEY_IP_ADDR "IP"
#define PLANETCORE_KEY_KB_NVRAM "NV"
#define PLANETCORE_KEY_PROCESSOR "PR"
#define PLANETCORE_KEY_PROC_VARIANT "PV"
#define PLANETCORE_KEY_SERIAL_BAUD "SB"
#define PLANETCORE_KEY_SERIAL_PORT "SP"
#define PLANETCORE_KEY_SWITCH "SW"
#define PLANETCORE_KEY_TEMP_OFFSET "TC"
#define PLANETCORE_KEY_TARGET_IP "TIP"
#define PLANETCORE_KEY_CRYSTAL_HZ "XT"
/* Prepare the table for processing, by turning all newlines
* into NULL bytes.
*/
void planetcore_prepare_table(char *table);
/* Return the value associated with a given key in text,
* decimal, or hex format.
*
* Returns zero/NULL on failure, non-zero on success.
*/
const char *planetcore_get_key(const char *table, const char *key);
int planetcore_get_decimal(const char *table, const char *key, u64 *val);
int planetcore_get_hex(const char *table, const char *key, u64 *val);
/* Updates the device tree local-mac-address properties based
* on the EA tag.
*/
void planetcore_set_mac_addrs(const char *table);
/* Sets the linux,stdout-path in the /chosen node. This requires the
* linux,planetcore-label property in each serial node.
*/
void planetcore_set_stdout_path(const char *table);
#endif