Since the existing UART/ethernet drivers are using cpm_hostalloc() so I am also using the same function. Then can I use kmalloc() to alloc such huge memory. If at all I have to configure BATx to just test how it behaves. How/where to configure BATx. One more thing is that totally I am allocating about 1MB memory in a chunk of 200K. I really dont know whether I can do such allocation in driver. But this much is very much required for my driver. If you have any other idea of achieving this then please point me in that direction. I need to get rid of this problme as early as possible to meet my schedule. please help.
Thanks, Prashant On 8/9/05, Dan Malek <dan at embeddededge.com> wrote: > > On Aug 8, 2005, at 10:30 PM, Prashant Alange wrote: > > > I am using alloc_bootmem_page() function to allocate memory required > > in my custom ethernet driver. > > Why? Just use the normal Linux memory allocators. > > > So I am thinking this could be because of cache since this > > driver is working fine on non-os platform. I want to disable the > > dcache for this memory region. > > This is a fully cache coherent processor, there is no need to > disable caching, nor is there any easy way to do this in the > current Linux implementation. This would require a custom > kernel, and you couldn't take advantage of the general > performance gain using BATs. > > Thanks. > > -- Dan > >