|
|
| File: [Development] / linux-2.6-xfs / arch / mips / hp-lj / Attic / asic.c (download)
Revision 1.1, Tue Dec 30 23:58:53 2003 UTC (13 years, 9 months ago) by cattelan
Initial Import 2.6.0 |
#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()];
}