From gd78059@sac.sfbay.sun.com Mon Oct 19 15:45:31 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9JMjUYm016413
	for <psarc-ext@sac.sfbay.sun.com>; Mon, 19 Oct 2009 15:45:30 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n9JMjUOa031817;
	Mon, 19 Oct 2009 16:45:30 -0600 (MDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KRS00G019VU9200@nwk-avmta-1.sfbay.Sun.COM>; Mon,
 19 Oct 2009 15:45:30 -0700 (PDT)
Received: from dm-sfbay-01.sfbay.sun.com ([129.145.155.118])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KRS008JT9VTQEC0@nwk-avmta-1.sfbay.Sun.COM>; Mon,
 19 Oct 2009 15:45:29 -0700 (PDT)
Received: from sac.sfbay.sun.com (sac.SFBay.Sun.COM [129.146.226.132])
	by dm-sfbay-01.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2)
 with ESMTP id n9JMjTVt018439; Mon, 19 Oct 2009 15:45:29 -0700 (PDT)
Received: from sac.sfbay.sun.com (localhost [127.0.0.1])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9JMjSb1016408; Mon,
 19 Oct 2009 15:45:28 -0700 (PDT)
Received: (from gd78059@localhost)
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8/Submit) id n9JMjSqA016404; Mon,
 19 Oct 2009 15:45:28 -0700 (PDT)
Date: Mon, 19 Oct 2009 15:45:28 -0700 (PDT)
From: "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>
Subject: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
To: PSARC-ext@sun.com
Cc: John.M.Martin@sun.com
Message-id: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
Status: RO
Content-Length: 6034


Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 IC2/SMBus supplement to DDC/CI
    1.2. Name of Document Author/Supplier:
	 Author:  John Martin
    1.3  Date of This Document:
	19 October, 2009
4. Technical Description

   PSARC/2007/695, Display Data Channel Command Interface (DDC/CI) ioctls,
   provides an interface for devices which support DDC/CI on an I2C bus. 
   As noted in the case materials, DDC/CI is useful in combination with
   EDID to uniquely identify the device and its capabilities.  This case
   supplements PSARC/2007/695 with a more generic I2C interface that allows
   access to both DDC/CI and EDID, plus optionally other devices as well.

   Issues addressed by this supplement:
   ------------------------------------

   1. Access to EDID and other functions.  The original case makes reference
   to using EDID to obtain information such as the monitor model and
   serial number, but only specified DDC/CI access methods which reside
   at I2C bus address 0x37.  EDID pages reside at I2C bus address 0x50.
   This case allows specifying the I2C bus address, which provides an
   single interface for DDC/CI, EDID and other I2C bus operations.

   2. Guaranteed command sequences.  Some operations may require a
   sequence of commands, for example a command write to select a page
   followed by a read.  If multiple clients access the driver at the
   same time, there no guarantee the ioctls from mutiple clients don't
   interleave.  This case allows submission of command sequences.
   The implementation guarantees the command sequences are delivered
   to the device without effect from other clients.

   3. Better control over timing.  I2C devices have a minimum idle
   time requirement between commands.  In addition some devices have
   a maximum time between the receipt of command and the subsequent
   request for a data transfer.  The original case makes the clients
   responsible for handling the timing.  This case moves the timing
   requirements to the implementation. 
  
   4. SMBus operations.  Some operations on third party devices
   support some of the protocols listed in section 7.5 of the SMBus 1.1
   specification.  This case allows the implementation to define which
   protocols, if any, are implemented by the master. For reference,
   the 1.1 spec is available at http://smbus.org/specs/smbus110.pdf.
    

   Delivery:
   ---------

   This case adds the following ioctls and assocated structures
   to visual_io.h.  There is no intent to obsolete or remove the
   interfaces added in the original case.

	#define VIS_I2C_CAPS	(('V' << 8) | 23)
	#define VIS_I2C_CMDS	(('V' << 8) | 24)

	struct vis_i2c_caps {
        	uint32_t        bus_count;
	        uint32_t        flags;
		uint32_t        max_cmds;
                uint32_t        max_cmd_buffer_size;
        };

	#define VIS_I2C_TENBIT_ADDR		0x00000001
	#define VIS_I2C_READ			0x00000002
	#define VIS_I2C_WRITE			0x00000004
	#define VIS_I2C_SMBUS_TENBIT_ADDR	0x00000010
	#define VIS_I2C_SMBUS_QUICK_READ	0x00000020
	#define VIS_I2C_SMBUS_QUICK_WRITE	0x00000040
	#define VIS_I2C_SMBUS_BYTE_READ		0x00000080
	#define VIS_I2C_SMBUS_BYTE_WRITE	0x00000100
	#define VIS_I2C_SMBUS_BYTE_BLOCK_READ	0x00000200
	#define VIS_I2C_SMBUS_BYTE_BLOCK_WRITE	0x00000400
	#define VIS_I2C_SMBUS_SHORT_BLOCK_READ	0x00000800
	#define VIS_I2C_SMBUS_SHORT_BLOCK_WRITE	0x00001000

    VIS_I2C_CAPS fills the structure vis_i2c_caps.  The element
    bus_count contains the number of I2C buses on the card,
    enumerated 0..(bus_count-1).  The element flags is a mask
    of the above capabilities for the I2C/SMBUS masters on the
    graphics card and/or the capabilites supported by the implementation.
    It does not define the capabilities of all the slave devices on each bus.
    The element max_cmds defines the maximum number of commands which
    the implementation can handle for a single VIS_I2C_CMDS request.
    The element max_cmd_buffer_size is the maximum buffer (vis_i2c_cmd.buffer)
    size for a single command supported by the implementation.

        struct vis_i2c_cmd {
                uint32_t	bus;		/* I2C bus number */
                uint32_t	addr;		/* I2C bus address */
                uint32_t	command;	/* SMBus command */
                uint32_t	flags;		/* vis_i2c_caps.flags */
                int32_t		length;
                int32_t		pad;		/* mbz */
                caddr_t		buffer;
        };

        struct vis_i2c_cmd_list {
                uint32_t	count;
                struct vis_i2c_cmd *cmd_list;
        };


   VIS_I2C_CMDS submits a non-zero length list of commands to
   be executed on one or more I2C buses.  vis_i2c_cmd_list.count
   is the number of vis_i2c_cmd structures pointed to by
   vis_i2c_cmd_list.cmd_list.  Each vis_i2c_cmd request is
   handled sequentially without interference from any other client
   request.

   Each vis_i2c_cmd structure defines an operation to be performed
   on an I2C bus.  The element bus defines the I2C bus number on
   the card, enumerated 0..(vis_i2c_caps.bus_count-).  The element
   addr defines the I2C address on the bus, for example, 0x50 for
   EDID and 0x37 for DDC/CI.  The element command is the command
   data for certain SMBUS operations.  The element flags defines
   the requested operation.  For example, (VIS_I2C_READ | 
   VIS_I2C_TENBIT_ADDR) would request a read from the I2C bus with
   a 10 bit address.  The element length defines the size in bytes
   of the data pointed to by the element buffer, if needed.

   In case of failure, this case does not define a completion/error
   status for each vis_i2c_cmd.  For debugging, the failing vis_i2c_cmd
   can be determined by submitting the commands one at a time.
   
6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		X
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open

From Sebastien.Roy@Sun.COM Thu Oct 29 08:59:26 2009
Received: from sunmail2sca.sfbay.sun.com (sunmail2sca.SFBay.Sun.COM [129.145.155.234])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9TFxQge028637
	for <psarc-ext@sac.sfbay.sun.com>; Thu, 29 Oct 2009 08:59:26 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail2sca.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.4) with ESMTP id n9TFxQQt027872
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 29 Oct 2009 08:59:26 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSA004319R1Y700@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 08:59:25 -0700 (PDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSA00JWU9R0YIC0@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Thu,
 29 Oct 2009 08:59:24 -0700 (PDT)
Received: from fe-amer-10.sun.com ([192.18.109.80])
	by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n9TFxOlM004573	for
 <PSARC-ext@sun.com>; Thu, 29 Oct 2009 15:59:24 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSA00J008F7LL00@mail-amer.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 09:59:24 -0600 (MDT)
Received: from [129.148.174.103] ([unknown] [129.148.174.103])
 by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 with ESMTPSA id <0KSA000JF9QXGQB0@mail-amer.sun.com>; Thu,
 29 Oct 2009 09:59:21 -0600 (MDT)
Date: Thu, 29 Oct 2009 11:56:50 -0400
From: Sebastien Roy <Sebastien.Roy@Sun.COM>
Subject: Re: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
In-reply-to: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
Sender: Sebastien.Roy@Sun.COM
To: "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>
Cc: PSARC-ext@Sun.COM, John.M.Martin@Sun.COM
Message-id: <1256831810.17844.0.camel@strat>
Organization: Sun Microsystems
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
Status: RO
Content-Length: 522

On Mon, 2009-10-19 at 15:45 -0700, Garrett D'Amore - sun microsystems
wrote:
> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
> This information is Copyright 2009 Sun Microsystems
> 1. Introduction
>     1.1. Project/Component Working Name:
> 	 IC2/SMBus supplement to DDC/CI
>     1.2. Name of Document Author/Supplier:
> 	 Author:  John Martin
>     1.3  Date of This Document:
> 	19 October, 2009

What's the commitment level of the ioctls and data structures
introduced, and what is the release binding?

-Seb



From gdamore@sun.com Thu Oct 29 09:15:44 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9TGFhWh028979
	for <psarc-ext@sac.sfbay.sun.com>; Thu, 29 Oct 2009 09:15:44 -0700 (PDT)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n9TGFfIf022865
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 29 Oct 2009 10:15:43 -0600 (MDT)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSA00E01AI7V400@brm-avmta-1.central.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@Sun.COM); Thu, 29 Oct 2009 10:15:43 -0600 (MDT)
Received: from sca-es-mail-1.sun.com ([192.18.43.132])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSA00BPMAI60080@brm-avmta-1.central.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@Sun.COM); Thu,
 29 Oct 2009 10:15:42 -0600 (MDT)
Received: from fe-sfbay-10.sun.com ([192.18.43.129])
	by sca-es-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id n9TGFgGK011478	for
 <PSARC-ext@Sun.COM>; Thu, 29 Oct 2009 09:15:42 -0700 (PDT)
Received: from conversion-daemon.fe-sfbay-10.sun.com by fe-sfbay-10.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSA009009QMYI00@fe-sfbay-10.sun.com> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Thu, 29 Oct 2009 09:15:42 -0700 (PDT)
Received: from [192.168.251.11] ([unknown] [76.93.15.33])
 by fe-sfbay-10.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 with ESMTPSA id <0KSA00GGJAI0DH50@fe-sfbay-10.sun.com>; Thu,
 29 Oct 2009 09:15:37 -0700 (PDT)
Date: Thu, 29 Oct 2009 09:15:36 -0700
From: "Garrett D'Amore" <gdamore@sun.com>
Subject: Re: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
In-reply-to: <1256831810.17844.0.camel@strat>
Sender: Garrett.Damore@sun.com
To: Sebastien Roy <Sebastien.Roy@sun.com>
Cc: "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>,
        PSARC-ext@sun.com, John.M.Martin@sun.com
Message-id: <4AE9BFA8.6060908@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
 <1256831810.17844.0.camel@strat>
User-Agent: Thunderbird 2.0.0.22 (X11/20090909)
Status: RO
Content-Length: 705

Sebastien Roy wrote:
> On Mon, 2009-10-19 at 15:45 -0700, Garrett D'Amore - sun microsystems
> wrote:
>   
>> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
>> This information is Copyright 2009 Sun Microsystems
>> 1. Introduction
>>     1.1. Project/Component Working Name:
>> 	 IC2/SMBus supplement to DDC/CI
>>     1.2. Name of Document Author/Supplier:
>> 	 Author:  John Martin
>>     1.3  Date of This Document:
>> 	19 October, 2009
>>     
>
> What's the commitment level of the ioctls and data structures
> introduced, and what is the release binding?
>
> -Seb
>
>
>   
I think this was intended for Uncommitted/Minor binding, but I'm going 
to wait for John to confirm that.

    - Garrett

From John.M.Martin@sun.com Thu Oct 29 09:39:02 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9TGd1fp029272
	for <psarc-ext@sac.sfbay.sun.com>; Thu, 29 Oct 2009 09:39:01 -0700 (PDT)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n9TGcvk5024870
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 29 Oct 2009 16:39:00 GMT
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSA00H0DBKZD300@brm-avmta-1.central.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 10:38:59 -0600 (MDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSA00BT1BKX00D0@brm-avmta-1.central.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Thu,
 29 Oct 2009 10:38:57 -0600 (MDT)
Received: from fe-amer-10.sun.com ([192.18.109.80])
	by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n9TGcvdr024572	for
 <PSARC-ext@sun.com>; Thu, 29 Oct 2009 16:38:57 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSA00200BABLL00@mail-amer.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 10:38:57 -0600 (MDT)
Received: from [192.168.1.13] ([unknown] [76.112.232.250])
 by mail-amer.sun.com (Sun Java(tm) System Messaging Server 7u2-7.04 64bit
 (built Jul  2 2009)) with ESMTPSA id <0KSA00BIZBKPC270@mail-amer.sun.com>; Thu,
 29 Oct 2009 10:38:49 -0600 (MDT)
Date: Thu, 29 Oct 2009 12:38:46 -0400
From: John Martin <John.M.Martin@sun.com>
Subject: Re: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
In-reply-to: <1256831810.17844.0.camel@strat>
Sender: John.M.Martin@sun.com
To: Sebastien Roy <Sebastien.Roy@sun.com>
Cc: "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>,
        PSARC-ext@sun.com
Message-id: <4AE9C516.9020907@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
 <1256831810.17844.0.camel@strat>
User-Agent: Thunderbird 2.0.0.23 (X11/20090929)
Status: RO
Content-Length: 589

Sebastien Roy wrote:
> On Mon, 2009-10-19 at 15:45 -0700, Garrett D'Amore - sun microsystems
> wrote:
>   
>> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
>> This information is Copyright 2009 Sun Microsystems
>> 1. Introduction
>>     1.1. Project/Component Working Name:
>> 	 IC2/SMBus supplement to DDC/CI
>>     1.2. Name of Document Author/Supplier:
>> 	 Author:  John Martin
>>     1.3  Date of This Document:
>> 	19 October, 2009
>>     
>
> What's the commitment level of the ioctls and data structures
> introduced, and what is the release binding?
>   
Committed/minor.


From gdamore@Sun.COM Thu Oct 29 09:41:36 2009
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk.SFBay.Sun.COM [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9TGfaaT029397
	for <psarc-ext@sac.sfbay.sun.com>; Thu, 29 Oct 2009 09:41:36 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail3mpk.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.4) with ESMTP id n9TGfaRv002423
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 29 Oct 2009 09:41:36 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSA00A01BPBHW00@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@Sun.COM); Thu, 29 Oct 2009 09:41:35 -0700 (PDT)
Received: from sca-es-mail-2.sun.com ([192.18.43.133])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSA009MVBPBOF10@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@Sun.COM); Thu,
 29 Oct 2009 09:41:35 -0700 (PDT)
Received: from fe-sfbay-09.sun.com ([192.18.43.129])
	by sca-es-mail-2.sun.com (8.13.7+Sun/8.12.9) with ESMTP id n9TGfZ50009139	for
 <PSARC-ext@Sun.COM>; Thu, 29 Oct 2009 09:41:35 -0700 (PDT)
Received: from conversion-daemon.fe-sfbay-09.sun.com by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSA00K00AVZE300@fe-sfbay-09.sun.com> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Thu, 29 Oct 2009 09:41:35 -0700 (PDT)
Received: from [192.168.251.11] ([unknown] [76.93.15.33])
 by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 with ESMTPSA id <0KSA0074ZBP66WB0@fe-sfbay-09.sun.com>; Thu,
 29 Oct 2009 09:41:34 -0700 (PDT)
Date: Thu, 29 Oct 2009 09:41:29 -0700
From: "Garrett D'Amore" <gdamore@Sun.COM>
Subject: Re: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
In-reply-to: <4AE9C516.9020907@sun.com>
Sender: Garrett.Damore@Sun.COM
To: John Martin <John.M.Martin@Sun.COM>
Cc: Sebastien Roy <Sebastien.Roy@Sun.COM>,
        "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>,
        PSARC-ext@Sun.COM
Message-id: <4AE9C5B9.2090501@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
 <1256831810.17844.0.camel@strat> <4AE9C516.9020907@sun.com>
User-Agent: Thunderbird 2.0.0.22 (X11/20090909)
Status: RO
Content-Length: 687

John Martin wrote:
> Sebastien Roy wrote:
>> On Mon, 2009-10-19 at 15:45 -0700, Garrett D'Amore - sun microsystems
>> wrote:
>>  
>>> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
>>> This information is Copyright 2009 Sun Microsystems
>>> 1. Introduction
>>>     1.1. Project/Component Working Name:
>>>      IC2/SMBus supplement to DDC/CI
>>>     1.2. Name of Document Author/Supplier:
>>>      Author:  John Martin
>>>     1.3  Date of This Document:
>>>     19 October, 2009
>>>     
>>
>> What's the commitment level of the ioctls and data structures
>> introduced, and what is the release binding?
>>   
> Committed/minor.
>
Thanks for clarifying that John.

    - Garrett


From Sebastien.Roy@sun.com Thu Oct 29 10:16:30 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n9THGUTr000516
	for <psarc-ext@sac.sfbay.sun.com>; Thu, 29 Oct 2009 10:16:30 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n9THGSd5005446
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 29 Oct 2009 11:16:29 -0600 (MDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSA00E0TDBGKL00@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 10:16:28 -0700 (PDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSA0099XDBGODB0@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Thu,
 29 Oct 2009 10:16:28 -0700 (PDT)
Received: from fe-amer-10.sun.com ([192.18.109.80])
	by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n9THGSB1013947	for
 <PSARC-ext@sun.com>; Thu, 29 Oct 2009 17:16:28 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSA00200BABLL00@mail-amer.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Thu, 29 Oct 2009 11:16:27 -0600 (MDT)
Received: from [129.148.174.103] ([unknown] [129.148.174.103])
 by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 with ESMTPSA id <0KSA001DXDB4FAB0@mail-amer.sun.com>; Thu,
 29 Oct 2009 11:16:16 -0600 (MDT)
Date: Thu, 29 Oct 2009 13:13:45 -0400
From: Sebastien Roy <Sebastien.Roy@sun.com>
Subject: Re: IC2/SMBus supplement to DDC/CI [PSARC/2009/570 FastTrack timeout
 10/26/2009]
In-reply-to: <4AE9C516.9020907@sun.com>
Sender: Sebastien.Roy@sun.com
To: John Martin <John.M.Martin@sun.com>
Cc: "Garrett D'Amore - sun microsystems" <gd78059@sac.sfbay.sun.com>,
        PSARC-ext@sun.com
Message-id: <1256836425.17844.20.camel@strat>
Organization: Sun Microsystems
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200910192245.n9JMjSqA016404@sac.sfbay.sun.com>
 <1256831810.17844.0.camel@strat> <4AE9C516.9020907@sun.com>
Status: RO
Content-Length: 229

On Thu, 2009-10-29 at 12:38 -0400, John Martin wrote:
> Sebastien Roy wrote:
> > What's the commitment level of the ioctls and data structures
> > introduced, and what is the release binding?
> >   
> Committed/minor.

+1
-Seb



From gdamore@sun.com Wed Nov  4 10:06:58 2009
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id nA4I6vcd008523
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 4 Nov 2009 10:06:57 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id nA4I6koO029160
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Thu, 5 Nov 2009 02:06:56 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KSL00K2BJNJ2U00@nwk-avmta-2.sfbay.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 04 Nov 2009 10:06:55 -0800 (PST)
Received: from sca-es-mail-2.sun.com ([192.18.43.133])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KSL00H3GJNHVK50@nwk-avmta-2.sfbay.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 04 Nov 2009 10:06:53 -0800 (PST)
Received: from fe-sfbay-09.sun.com ([192.18.43.129])
	by sca-es-mail-2.sun.com (8.13.7+Sun/8.12.9) with ESMTP id nA4I6rMh029201	for
 <PSARC-ext@sun.com>; Wed, 04 Nov 2009 10:06:53 -0800 (PST)
Received: from conversion-daemon.fe-sfbay-09.sun.com by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 id <0KSL00100JAMQP00@fe-sfbay-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 04 Nov 2009 10:06:52 -0800 (PST)
Received: from [192.168.251.11] ([unknown] [76.93.15.33])
 by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.04 64bit (built Jul  2 2009))
 with ESMTPSA id <0KSL00BY1JNCP0C0@fe-sfbay-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 04 Nov 2009 10:06:49 -0800 (PST)
Date: Wed, 04 Nov 2009 10:06:48 -0800
From: "Garrett D'Amore" <gdamore@sun.com>
Subject: PSARC 2009/570  IC2/SMBus supplement to DDC/CI
Sender: Garrett.Damore@sun.com
To: PSARC-ext <PSARC-ext@sun.com>
Message-id: <4AF1C2B8.9030109@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
User-Agent: Thunderbird 2.0.0.22 (X11/20090909)
Status: RO
Content-Length: 54

This case was approved at PSARC today.

    - Garrett

