From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from az33egw02.freescale.net (az33egw02.freescale.net [192.88.158.103]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "az33egw02.freescale.net", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id D6092DDF6F for ; Wed, 10 Oct 2007 19:56:28 +1000 (EST) Received: from az33smr01.freescale.net (az33smr01.freescale.net [10.64.34.199]) by az33egw02.freescale.net (8.12.11/az33egw02) with ESMTP id l9A9uNZd026976 for ; Wed, 10 Oct 2007 02:56:23 -0700 (MST) Received: from zch01exm26.fsl.freescale.net (zch01exm26.ap.freescale.net [10.192.129.221]) by az33smr01.freescale.net (8.13.1/8.13.0) with ESMTP id l9A9uFRF029638 for ; Wed, 10 Oct 2007 04:56:22 -0500 (CDT) From: Li Yang To: galak@kernel.crashing.org, paulus@samba.org, linuxppc-dev@ozlabs.org Subject: [PATCH 6/9] add documentation for SerDes nodes Date: Wed, 10 Oct 2007 18:06:41 +0800 Message-Id: <1192010804-20071-6-git-send-email-leoli@freescale.com> In-Reply-To: <1192010804-20071-5-git-send-email-leoli@freescale.com> References: <1192010804-20071-1-git-send-email-leoli@freescale.com> <1192010804-20071-2-git-send-email-leoli@freescale.com> <1192010804-20071-3-git-send-email-leoli@freescale.com> <1192010804-20071-4-git-send-email-leoli@freescale.com> <1192010804-20071-5-git-send-email-leoli@freescale.com> Cc: Li Yang List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Signed-off-by: Li Yang --- Documentation/powerpc/booting-without-of.txt | 29 ++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index f499f76..84bce42 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt @@ -1856,6 +1856,35 @@ platforms are moved over to use the flattened-device-tree model. phy-handle = < &serdes1 >; }; + m) SerDes nodes + + SerDes is a serializer/deserializer used by some Freescale SoC. + + Required properties: + + - compatible : Should specify what this SerDes controller is compatible + with. Currently, this is most likely to be "fsl,serdes". + - reg : Offset and length of the register set for the device. + - protocol : Which up layer protocol is running on the serial + interface. Could be "sata", "pcie", "sgmii". + - clock : Input clock frequency for SerDes in unit of MHz. + + Optional properties: + + - vdd-1v : Define this property when Vdd is 1V. + - pcie-x2 : Define this property when using PCI Express x2 interface. + Valid only when protocol is set to "pcie". + + Example: + + serdes1:serdes@e3000 { + compatible = "fsl,serdes"; + reg = ; + vdd-1v; + protocol = "sata"; + clock = ; + }; + More devices will be defined as this spec matures. VII - Specifying interrupt information for devices -- 1.5.3.2.104.g41ef