From owner-freebsd-embedded@FreeBSD.ORG Thu Aug 22 05:27:13 2013 Return-Path: Delivered-To: freebsd-embedded@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CCE15405 for ; Thu, 22 Aug 2013 05:27:13 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-ob0-f174.google.com (mail-ob0-f174.google.com [209.85.214.174]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 92AB52E25 for ; Thu, 22 Aug 2013 05:27:13 +0000 (UTC) Received: by mail-ob0-f174.google.com with SMTP id wd6so2717609obb.19 for ; Wed, 21 Aug 2013 22:27:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to; bh=k1Lhm3WxsCoXl45grQxf9DTvxKIweSNmlkExyt7LzIw=; b=l0OB7MP5J+gAUT+YPvFkaimox33DGISZNsPSSRixAlHXLiSqjhmjRTf6UzTU3bnzBM 8XEbgfBwb8fV8yEIUZiGKHcPVRF706XDEE63Os3mXZYuFFVuWFwCtm0RpUm7dwTO2Q6K 9ED2bBGlFnHoXRQmdOxgKGtq2GUtyB61hv0Tra2Yd1FqkhL/pbPajGy7zKGzJX3OwWng v9W1EejwIZWujUVTAJZ7066Sr8qzzbhvjksVJA0+5tK6HwEMkRgit6RWv/UOGhairher tdaOrOjruAnf/ZJRJvnRpABo8U/d2DC3vqojTHrsVLkquiGpZJJamgaf0vhfe2ok/BNx qEng== X-Gm-Message-State: ALoCoQmygSxKN5DjIRYOSCa1ZXznbs0G4rZXZ29QXIEvXQfcKCYDjga9F4TZx/7lISPsU66y+o0/ X-Received: by 10.60.133.71 with SMTP id pa7mr12183978oeb.44.1377149226886; Wed, 21 Aug 2013 22:27:06 -0700 (PDT) Received: from 53.imp.bsdimp.com (50-78-194-198-static.hfc.comcastbusiness.net. [50.78.194.198]) by mx.google.com with ESMTPSA id tz10sm16180965obc.10.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 21 Aug 2013 22:27:05 -0700 (PDT) Sender: Warner Losh Subject: Re: [PATCH] SDIO support for Globalscale Dreamplug Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: <20130821095849.GA7322@olymp.kibab.com> Date: Wed, 21 Aug 2013 23:27:03 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <8D289F43-261C-43F2-A4AC-F027E70558B7@bsdimp.com> References: <20130702145905.GA1847@olymp.kibab.com> <51D3097A.8010601@FreeBSD.org> <51D3282C.1090701@bakulin.de> <20130703222002.GA60491@olymp.kibab.com> <51D50C55.1040300@myspectrum.nl> <51D531CB.3060300@bakulin.de> <51D5FE4C.9060102@bakulin.de> <20130821095849.GA7322@olymp.kibab.com> To: Ilya Bakulin X-Mailer: Apple Mail (2.1085) Cc: Alexander Motin , freebsd-arm@freebsd.org, freebsd-embedded@freebsd.org X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 05:27:13 -0000 What's the best git repo URL to clone from? Warner On Aug 21, 2013, at 3:58 AM, Ilya Bakulin wrote: > So, after fixing some bugs in my own code and adding a couple of bus = methods > I am finally able to load the firmware onto the card and receive = "Firmare started" message. >=20 > Next step will be adding support for setting IRQ handlers (SDIO stack) = and writing the code > to connect mv_sdiowl driver to our net80211 stack (Adrian I hope you = will help with this). >=20 > As SD8787 adapter uses the binary firmware, I had to import it in the = tree. As I'm doing all testing > without any root FS, I compile the formware blob into the kernel. > The patch below is therefore incomplete; full snapshot is kept under = [1]. > To activate mv_sdiowl driver, add mmc, mv_sdio, mv_sdiowl and = mv_sdiowl_fw to the kernel config. >=20 > [1] = https://github.com/kibab/freebsd/compare/master...kibab-dplug#files_bucket= >=20 > I will keep you all updated.