2011-03-30 07:27:47 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2016-05-05 07:57:56 +00:00
|
|
|
* Copyright (C) 2010 John Crispin <john@phrozen.org>
|
2011-03-30 07:27:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LTQ_PROM_H__
|
|
|
|
#define _LTQ_PROM_H__
|
|
|
|
|
|
|
|
#define LTQ_SYS_TYPE_LEN 0x100
|
2013-01-22 11:59:30 +00:00
|
|
|
#define LTQ_SYS_REV_LEN 0x10
|
2011-03-30 07:27:47 +00:00
|
|
|
|
|
|
|
struct ltq_soc_info {
|
|
|
|
unsigned char *name;
|
|
|
|
unsigned int rev;
|
2012-04-30 09:33:08 +00:00
|
|
|
unsigned char rev_type[LTQ_SYS_REV_LEN];
|
|
|
|
unsigned int srev;
|
2011-03-30 07:27:47 +00:00
|
|
|
unsigned int partnum;
|
|
|
|
unsigned int type;
|
|
|
|
unsigned char sys_type[LTQ_SYS_TYPE_LEN];
|
2012-04-30 09:33:08 +00:00
|
|
|
unsigned char *compatible;
|
2011-03-30 07:27:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern void ltq_soc_detect(struct ltq_soc_info *i);
|
2012-04-30 09:33:08 +00:00
|
|
|
extern void ltq_soc_init(void);
|
2011-03-30 07:27:47 +00:00
|
|
|
|
|
|
|
#endif
|