[ECOS] bug about MPC8260 FEC driver?
Water He
hyhe@PhotonicBridges.com
Sun Mar 2 05:57:00 GMT 2003
in file ...\ecos\packages\devs\eth\powerpc\quicc2\current\src\if_fec.c
founction fec_eth_init():
there are code :
if (cache_state) {
HAL_DCACHE_DISABLE();
HAL_DCACHE_INVALIDATE_ALL();
}
i think it should be:
if (cache_state) {
HAL_DCACHE_SYNC();
HAL_DCACHE_DISABLE();
}
If we call HAL_DCACHE_DISABLE() here, some modified in the ram will lose. In our test, once system goes here, the value of net_mem (in support.c) will change to 0.
More information about the Ecos-discuss
mailing list