mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 19:37:10 +02:00
adm5120: move common routerboot definitions into a separate header file
Those will be used on the ar71xx platform as well. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33341 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5e5c7d5aa1
commit
38ca354ccc
@ -14,6 +14,7 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/routerboot.h>
|
||||
|
||||
#include <asm/bootinfo.h>
|
||||
#include <asm/addrspace.h>
|
||||
|
@ -9,10 +9,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _ROUTERBOOT_H
|
||||
#define _ROUTERBOOT_H
|
||||
|
||||
#define RB_MAC_SIZE 6
|
||||
#ifndef _PROM_ROUTERBOOT_H_
|
||||
#define _PROM_ROUTERBOOT_H_
|
||||
|
||||
struct rb_bios_settings {
|
||||
u32 hs_offs; /* hard settings offset */
|
||||
@ -30,96 +28,9 @@ struct rb_hard_settings {
|
||||
u8 *mac_base; /* mac address base */
|
||||
};
|
||||
|
||||
/*
|
||||
* Magic numbers
|
||||
*/
|
||||
#define RB_MAGIC_HARD 0x64726148 /* "Hard" */
|
||||
#define RB_MAGIC_SOFT 0x74666F53 /* "Soft" */
|
||||
#define RB_MAGIC_DAWN 0x6E776144 /* "Dawn" */
|
||||
|
||||
#define RB_ID_TERMINATOR 0
|
||||
|
||||
/*
|
||||
* ID values for Hardware settings
|
||||
*/
|
||||
#define RB_ID_HARD_01 1
|
||||
#define RB_ID_HARD_02 2
|
||||
#define RB_ID_FLASH_INFO 3
|
||||
#define RB_ID_MAC_ADDRESS_PACK 4
|
||||
#define RB_ID_BOARD_NAME 5
|
||||
#define RB_ID_BIOS_VERSION 6
|
||||
#define RB_ID_HARD_07 7
|
||||
#define RB_ID_SDRAM_TIMINGS 8
|
||||
#define RB_ID_DEVICE_TIMINGS 9
|
||||
#define RB_ID_SOFTWARE_ID 10
|
||||
#define RB_ID_SERIAL_NUMBER 11
|
||||
#define RB_ID_HARD_12 12
|
||||
#define RB_ID_MEMORY_SIZE 13
|
||||
#define RB_ID_MAC_ADDRESS_COUNT 14
|
||||
|
||||
/*
|
||||
* ID values for Software settings
|
||||
*/
|
||||
#define RB_ID_UART_SPEED 1
|
||||
#define RB_ID_BOOT_DELAY 2
|
||||
#define RB_ID_BOOT_DEVICE 3
|
||||
#define RB_ID_BOOT_KEY 4
|
||||
#define RB_ID_CPU_MODE 5
|
||||
#define RB_ID_FW_VERSION 6
|
||||
#define RB_ID_SOFT_07 7
|
||||
#define RB_ID_SOFT_08 8
|
||||
#define RB_ID_BOOT_PROTOCOL 9
|
||||
#define RB_ID_SOFT_10 10
|
||||
#define RB_ID_SOFT_11 11
|
||||
|
||||
/*
|
||||
* UART_SPEED values
|
||||
*/
|
||||
#define RB_UART_SPEED_115200 0
|
||||
#define RB_UART_SPEED_57600 1
|
||||
#define RB_UART_SPEED_38400 2
|
||||
#define RB_UART_SPEED_19200 3
|
||||
#define RB_UART_SPEED_9600 4
|
||||
#define RB_UART_SPEED_4800 5
|
||||
#define RB_UART_SPEED_2400 6
|
||||
#define RB_UART_SPEED_1200 7
|
||||
|
||||
/*
|
||||
* BOOT_DELAY values
|
||||
*/
|
||||
#define RB_BOOT_DELAY_0SEC 0
|
||||
#define RB_BOOT_DELAY_1SEC 1
|
||||
#define RB_BOOT_DELAY_2SEC 2
|
||||
|
||||
/*
|
||||
* BOOT_DEVICE values
|
||||
*/
|
||||
#define RB_BOOT_DEVICE_ETHER 0
|
||||
#define RB_BOOT_DEVICE_NANDETH 1
|
||||
#define RB_BOOT_DEVICE_ETHONCE 2
|
||||
#define RB_BOOT_DEVICE_NANDONLY 3
|
||||
|
||||
/*
|
||||
* BOOT_KEY values
|
||||
*/
|
||||
#define RB_BOOT_KEY_ANY 0
|
||||
#define RB_BOOT_KEY_DEL 1
|
||||
|
||||
/*
|
||||
* CPU_MODE values
|
||||
*/
|
||||
#define RB_CPU_MODE_POWERSAVE 0
|
||||
#define RB_CPU_MODE_REGULAR 1
|
||||
|
||||
/*
|
||||
* BOOT_PROTOCOL values
|
||||
*/
|
||||
#define RB_BOOT_PROTOCOL_BOOTP 0
|
||||
#define RB_BOOT_PROTOCOL_DHCP 1
|
||||
|
||||
extern int routerboot_present(void) __init;
|
||||
extern char *routerboot_get_boardname(void);
|
||||
|
||||
extern struct rb_hard_settings rb_hs;
|
||||
|
||||
#endif /* _ROUTERBOOT_H */
|
||||
#endif /* _PROM_ROUTERBOOT_H_ */
|
||||
|
104
target/linux/generic/files/include/linux/routerboot.h
Normal file
104
target/linux/generic/files/include/linux/routerboot.h
Normal file
@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Mikrotik's RouterBOOT definitions
|
||||
*
|
||||
* Copyright (C) 2007-2008 Gabor Juhos <juhosg@openwrt.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 as published
|
||||
* by the Free Software Foundation.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _ROUTERBOOT_H
|
||||
#define _ROUTERBOOT_H
|
||||
|
||||
#define RB_MAC_SIZE 6
|
||||
|
||||
/*
|
||||
* Magic numbers
|
||||
*/
|
||||
#define RB_MAGIC_HARD 0x64726148 /* "Hard" */
|
||||
#define RB_MAGIC_SOFT 0x74666F53 /* "Soft" */
|
||||
#define RB_MAGIC_DAWN 0x6E776144 /* "Dawn" */
|
||||
|
||||
#define RB_ID_TERMINATOR 0
|
||||
|
||||
/*
|
||||
* ID values for Hardware settings
|
||||
*/
|
||||
#define RB_ID_HARD_01 1
|
||||
#define RB_ID_HARD_02 2
|
||||
#define RB_ID_FLASH_INFO 3
|
||||
#define RB_ID_MAC_ADDRESS_PACK 4
|
||||
#define RB_ID_BOARD_NAME 5
|
||||
#define RB_ID_BIOS_VERSION 6
|
||||
#define RB_ID_HARD_07 7
|
||||
#define RB_ID_SDRAM_TIMINGS 8
|
||||
#define RB_ID_DEVICE_TIMINGS 9
|
||||
#define RB_ID_SOFTWARE_ID 10
|
||||
#define RB_ID_SERIAL_NUMBER 11
|
||||
#define RB_ID_HARD_12 12
|
||||
#define RB_ID_MEMORY_SIZE 13
|
||||
#define RB_ID_MAC_ADDRESS_COUNT 14
|
||||
|
||||
/*
|
||||
* ID values for Software settings
|
||||
*/
|
||||
#define RB_ID_UART_SPEED 1
|
||||
#define RB_ID_BOOT_DELAY 2
|
||||
#define RB_ID_BOOT_DEVICE 3
|
||||
#define RB_ID_BOOT_KEY 4
|
||||
#define RB_ID_CPU_MODE 5
|
||||
#define RB_ID_FW_VERSION 6
|
||||
#define RB_ID_SOFT_07 7
|
||||
#define RB_ID_SOFT_08 8
|
||||
#define RB_ID_BOOT_PROTOCOL 9
|
||||
#define RB_ID_SOFT_10 10
|
||||
#define RB_ID_SOFT_11 11
|
||||
|
||||
/*
|
||||
* UART_SPEED values
|
||||
*/
|
||||
#define RB_UART_SPEED_115200 0
|
||||
#define RB_UART_SPEED_57600 1
|
||||
#define RB_UART_SPEED_38400 2
|
||||
#define RB_UART_SPEED_19200 3
|
||||
#define RB_UART_SPEED_9600 4
|
||||
#define RB_UART_SPEED_4800 5
|
||||
#define RB_UART_SPEED_2400 6
|
||||
#define RB_UART_SPEED_1200 7
|
||||
|
||||
/*
|
||||
* BOOT_DELAY values
|
||||
*/
|
||||
#define RB_BOOT_DELAY_0SEC 0
|
||||
#define RB_BOOT_DELAY_1SEC 1
|
||||
#define RB_BOOT_DELAY_2SEC 2
|
||||
|
||||
/*
|
||||
* BOOT_DEVICE values
|
||||
*/
|
||||
#define RB_BOOT_DEVICE_ETHER 0
|
||||
#define RB_BOOT_DEVICE_NANDETH 1
|
||||
#define RB_BOOT_DEVICE_ETHONCE 2
|
||||
#define RB_BOOT_DEVICE_NANDONLY 3
|
||||
|
||||
/*
|
||||
* BOOT_KEY values
|
||||
*/
|
||||
#define RB_BOOT_KEY_ANY 0
|
||||
#define RB_BOOT_KEY_DEL 1
|
||||
|
||||
/*
|
||||
* CPU_MODE values
|
||||
*/
|
||||
#define RB_CPU_MODE_POWERSAVE 0
|
||||
#define RB_CPU_MODE_REGULAR 1
|
||||
|
||||
/*
|
||||
* BOOT_PROTOCOL values
|
||||
*/
|
||||
#define RB_BOOT_PROTOCOL_BOOTP 0
|
||||
#define RB_BOOT_PROTOCOL_DHCP 1
|
||||
|
||||
#endif /* _ROUTERBOOT_H */
|
Loading…
Reference in New Issue
Block a user