Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933800AbXJPOyd (ORCPT ); Tue, 16 Oct 2007 10:54:33 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932412AbXJPOyE (ORCPT ); Tue, 16 Oct 2007 10:54:04 -0400 Received: from spirit.analogic.com ([204.178.40.4]:3463 "EHLO spirit.analogic.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932909AbXJPOx6 convert rfc822-to-8bit (ORCPT ); Tue, 16 Oct 2007 10:53:58 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT X-MimeOLE: Produced By Microsoft Exchange V6.5 X-OriginalArrivalTime: 16 Oct 2007 14:53:53.0513 (UTC) FILETIME=[5EB89D90:01C81004] Content-class: urn:content-classes:message Subject: Re: how to use TLB to prevent Linux accessing a particular memory region Date: Tue, 16 Oct 2007 10:53:53 -0400 Message-ID: In-reply-to: <431051.14949.qm@web8408.mail.in.yahoo.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: how to use TLB to prevent Linux accessing a particular memory region Thread-Index: AcgQBF6/b08V6D2YRka+a0joDjSdKg== References: <431051.14949.qm@web8408.mail.in.yahoo.com> From: "linux-os \(Dick Johnson\)" To: "veerasena reddy" Cc: "linux-kernel.org" , "linux-mips" Reply-To: "linux-os \(Dick Johnson\)" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2534 Lines: 65 On Tue, 16 Oct 2007, veerasena reddy wrote: > Hi, > > I have a board, which has two processors ( one is MIPS > on which Linux-2.6.18 kernel runs and another is DSP > based processor) and 32MB DDR. > > Out of 32MB of DDR 8MB is reserved for use by DSP > processor. But the MIPS processor downloads firmware > into this reserved memory for the DSP. > > Now, is it possible to use the TLB to prevent Linux > from accessing the reserved memory after the firmware > has been downloaded? > > Also we'd need to remove those TLB entries if the > firmware would ever need to be reloaded to the DSP' > memory region. > > What are the APIs to be used to achieve the above? > > > Thanks in advance. > > Regards, > Veerasena. > > > 5, 50, 500, 5000 - Store N number of mails in your inbox. Go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html > - Can't you just memory-map the area you need? That reserves it until it's unmapped. You don't need to directly touch the TLB. If you need a physical location, use ioremap_nocache() in your driver. If you can't get your physical location because the kernel already uses it, boot the kernel with mem=xxx on the command-line to prevent the kernel from using memory you want to reserve for your DSP. You can use num_physpages (an integer) to find out the last page the kernel uses. BTW, if this is a new design, most DSP devices put their RAM on their own board so you don't have these problems. That RAM gets mmaped to user-space as needed for access, that address being set asside in PCI space. Cheers, Dick Johnson Penguin : Linux version 2.6.16.24 on an i686 machine (5592.59 BogoMips). My book : http://www.AbominableFirebug.com/ _ **************************************************************** The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them. Thank you. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/