Re: PCMCIA i82365 compatible or TI1250? by Li
Li
Wed Aug 06 20:34:39 CDT 2003
On Fri, 1 Aug 2003 11:27:49 -0700 you wrote:
> I checked the ti1250.reg file:
>
> ...
> [$(PCI_BUS_ROOT)\Template\PCMCIA]
> "Dll"="pcmcia.dll"
> "Order"=dword:0
> "Class"=dword:06
> "SubClass"=dword:07
> "ProgIF"=dword:0
> "VendorID"=multi_sz:"104c","104c","1180"
> "DeviceID"=multi_sz:"ac19","ac1c","0476"
> "IsrDll"="ti1250isr.dll"
> "IsrHandler"="ISRHandler"
> "IClass"=multi_sz:"{6BEAB08A-8914-42fd-B33F-
> 61968B9AAB32}=PCMCIA Card Services"
> "ConfigEntry"="PCIBus_Config"
> "ConfigDll"="pcmcia.dll"
>
> It seems the ONLY place I need to change is:
>
> "VendorID"="104c"
> "DeviceID"="ac1c"
>
> right?
>
> in platform.reg:
> ...
> ; @CESYSGEN IF CE_MODULES_PCMCIA
> IF BSP_NOPCMCIA !
> #if ! defined BSP_PCMCIA_TI1250 ; default to
> BSP_PCMCIA_I82365
> #include "$(DRIVERS_DIR)\pcmcia\i82365\i82365.reg"
> #endif
>
> ;my addtion
> #if BSP_PCMCIA_TI1250
> #include "$(DRIVERS_DIR)\pcmcia\ti1250\ti1250.reg"
> #endif
As I know, you need not add these to the platform.reg. Since you are
using the ti1250 driver, all you need to do is: change the VendorID and
DeviceID field in ti1250.reg, add the ti1250 feature from the catalog to
your platform.
And I also think the position you put these is wrong.
>
> ENDIF BSP_NOPCMCIA !
> ; @CESYSGEN ENDIF CE_MODULES_PCMCIA
> ...
>
> right?