|
|
| File: [Development] / linux-2.4-xfs / arch / mips / hp-lj / asic.c (download)
Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Initial Import 2.4.24pre2 |
#include "asm/hp-lj/asic.h"
AsicId GetAsicId(void)
{
static int asic = IllegalAsic;
if (asic == IllegalAsic) {
if (*(unsigned int *)0xbff70000 == 0x1114103c)
asic = HarmonyAsic;
else if (*(unsigned int *)0xbff80000 == 0x110d103c)
asic = AndrosAsic;
else
asic = UnknownAsic;
}
return asic;
}
const char* const GetAsicName(void)
{
static const char* const Names[] =
{ "Illegal", "Unknown", "Andros", "Harmony" };
return Names[(int)GetAsicId()];
}