blob: 4b6576c50250ad09e73478f49fdf9c4bc0d61243 [file] [log] [blame]
John Crispin171bb2f2011-03-30 09:27:47 +02001/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
5 *
John Crispin97b92102016-05-05 09:57:56 +02006 * Copyright (C) 2010 John Crispin <john@phrozen.org>
John Crispin171bb2f2011-03-30 09:27:47 +02007 */
8
9#ifndef _LTQ_PROM_H__
10#define _LTQ_PROM_H__
11
12#define LTQ_SYS_TYPE_LEN 0x100
Ralf Baechle70342282013-01-22 12:59:30 +010013#define LTQ_SYS_REV_LEN 0x10
John Crispin171bb2f2011-03-30 09:27:47 +020014
15struct ltq_soc_info {
16 unsigned char *name;
17 unsigned int rev;
John Crispin215ed202012-04-30 11:33:08 +020018 unsigned char rev_type[LTQ_SYS_REV_LEN];
19 unsigned int srev;
John Crispin171bb2f2011-03-30 09:27:47 +020020 unsigned int partnum;
21 unsigned int type;
22 unsigned char sys_type[LTQ_SYS_TYPE_LEN];
John Crispin215ed202012-04-30 11:33:08 +020023 unsigned char *compatible;
John Crispin171bb2f2011-03-30 09:27:47 +020024};
25
26extern void ltq_soc_detect(struct ltq_soc_info *i);
John Crispin215ed202012-04-30 11:33:08 +020027extern void ltq_soc_init(void);
John Crispin171bb2f2011-03-30 09:27:47 +020028
John Crispin171bb2f2011-03-30 09:27:47 +020029#endif