From owner-freebsd-current@FreeBSD.ORG Sun Sep 14 21:35:15 2008 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EA801065676; Sun, 14 Sep 2008 21:35:15 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.delphij.net (unknown [IPv6:2001:470:1f03:2c9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 0D2E88FC12; Sun, 14 Sep 2008 21:35:15 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [211.166.10.233]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsier.delphij.net (Postfix) with ESMTPS id DCA382844D; Mon, 15 Sep 2008 05:35:13 +0800 (CST) Received: from localhost (tarsier.geekcn.org [211.166.10.233]) by tarsier.geekcn.org (Postfix) with ESMTP id F3C2EF65186; Mon, 15 Sep 2008 05:35:12 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([211.166.10.233]) by localhost (mail.geekcn.org [211.166.10.233]) (amavisd-new, port 10024) with ESMTP id qG1P1655yrnk; Mon, 15 Sep 2008 05:35:04 +0800 (CST) Received: from delta.delphij.net (c-76-103-40-85.hsd1.ca.comcast.net [76.103.40.85]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTPSA id 76824EB8C05; Mon, 15 Sep 2008 05:35:03 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type:content-transfer-encoding; b=hXWCf3jbVgFNeZi6mZTiPVfuGcZ8YsvFIOusX2bwmJrehQiojX6aHl/RwC4YbIMpm TYwyZJF9aWThu/1ReeIJw== Message-ID: <48CD837C.9050206@delphij.net> Date: Sun, 14 Sep 2008 14:34:52 -0700 From: Xin LI User-Agent: Thunderbird 2.0.0.16 (X11/20080813) MIME-Version: 1.0 To: "Carlos A. M. dos Santos" References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Current , olli@FreeBSD.org Subject: Re: Why VESA and DPMS are available only for i386? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Sep 2008 21:35:15 -0000 Carlos A. M. dos Santos wrote: > Hello, > > Several PRs were closed based on the argument that FreeBSD/amd64 > cannot call to the VESA BIOS. XFree86 solved this problem by means of > the INT10 module. I believe that it would be possible to do the same > on the FreeBSD kernel. > > Is there any ongoing effort to enable the VESA kernel moule on > non-i386 platform? Is there any particular difficulty for doing this, > besides depending on VM86? > According to VESA's VBE 3.0 standard, there is a "Protected Mode Entry Point" [optionally] provided by BIOS, which OS or application is supposed to copy to a place where it is writable. The code there would be written in 16-bit protected mode. Therefore I think it's do-able... http://www.vesa.org/public/VBE/vbe3.pdf Cheers,