<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/qemu.git/hw/gpio/Kconfig, branch master</title>
<subtitle>Experimental fork of QEMU with video encoding patches</subtitle>
<id>https://git.openslx.org/bwlp/qemu.git/atom/hw/gpio/Kconfig?h=master</id>
<link rel='self' href='https://git.openslx.org/bwlp/qemu.git/atom/hw/gpio/Kconfig?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/'/>
<updated>2022-10-17T19:15:09+00:00</updated>
<entry>
<title>hw/gpio/meson: Introduce dedicated config switch for hw/gpio/mpc8xxx</title>
<updated>2022-10-17T19:15:09+00:00</updated>
<author>
<name>Bernhard Beschow</name>
</author>
<published>2022-10-03T20:31:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=2c860abfb6c097ba8cf22316ff9957485d0ff4ad'/>
<id>urn:sha1:2c860abfb6c097ba8cf22316ff9957485d0ff4ad</id>
<content type='text'>
Having a dedicated config switch makes dependency handling cleaner.

Signed-off-by: Bernhard Beschow &lt;shentey@gmail.com&gt;
Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;f4bug@amsat.org&gt;
Message-Id: &lt;20221003203142.24355-3-shentey@gmail.com&gt;
Signed-off-by: Daniel Henrique Barboza &lt;danielhb413@gmail.com&gt;
</content>
</entry>
<entry>
<title>hw: gpio: implement gpio-pwr driver for qemu reset/poweroff</title>
<updated>2021-01-29T10:47:28+00:00</updated>
<author>
<name>Maxim Uvarov</name>
</author>
<published>2021-01-28T12:00:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=c97377652dfeef2e0373faa2cdc05548b1536d77'/>
<id>urn:sha1:c97377652dfeef2e0373faa2cdc05548b1536d77</id>
<content type='text'>
Implement gpio-pwr driver to allow reboot and poweroff machine.
This is simple driver with just 2 gpios lines. Current use case
is to reboot and poweroff virt machine in secure mode. Secure
pl066 gpio chip is needed for that.

Signed-off-by: Maxim Uvarov &lt;maxim.uvarov@linaro.org&gt;
Reviewed-by: Hao Wu &lt;wuhaotsh@google.com&gt;
Reviewed-by: Peter Maydell &lt;peter.maydell@linaro.org&gt;
Signed-off-by: Peter Maydell &lt;peter.maydell@linaro.org&gt;
</content>
</entry>
<entry>
<title>hw/riscv: Move sifive_gpio model to hw/gpio</title>
<updated>2020-09-09T22:54:19+00:00</updated>
<author>
<name>Bin Meng</name>
</author>
<published>2020-09-03T10:40:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=4921a0ce86cecd03e6918832673db79de62e6fe1'/>
<id>urn:sha1:4921a0ce86cecd03e6918832673db79de62e6fe1</id>
<content type='text'>
This is an effort to clean up the hw/riscv directory. Ideally it
should only contain the RISC-V SoC / machine codes plus generic
codes. Let's move sifive_gpio model to hw/gpio directory.

Note this also removes the trace-events in the hw/riscv directory,
since gpio is the only supported trace target in that directory.

Signed-off-by: Bin Meng &lt;bin.meng@windriver.com&gt;
Reviewed-by: Alistair Francis &lt;alistair.francis@wdc.com&gt;
Message-Id: &lt;1599129623-68957-5-git-send-email-bmeng.cn@gmail.com&gt;
Signed-off-by: Alistair Francis &lt;alistair.francis@wdc.com&gt;
</content>
</entry>
<entry>
<title>i2c: express dependencies with Kconfig</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=1550b0e6bfe3ab6985e5ad75df1c528a0ca39468'/>
<id>urn:sha1:1550b0e6bfe3ab6985e5ad75df1c528a0ca39468</id>
<content type='text'>
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Acked-by: Thomas Huth &lt;thuth@redhat.com&gt;
Message-Id: &lt;20190123065618.3520-38-yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>kconfig: introduce kconfig files</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=82f5181777ebe04b550fd94a1d04c49dd3f012dc'/>
<id>urn:sha1:82f5181777ebe04b550fd94a1d04c49dd3f012dc</id>
<content type='text'>
The Kconfig files were generated mostly with this script:

  for i in `grep -ho CONFIG_[A-Z0-9_]* default-configs/* | sort -u`; do
    set fnord `git grep -lw $i -- 'hw/*/Makefile.objs' `
    shift
    if test $# = 1; then
      cat &gt;&gt; $(dirname $1)/Kconfig &lt;&lt; EOF
config ${i#CONFIG_}
    bool

EOF
      git add $(dirname $1)/Kconfig
    else
      echo $i $*
    fi
  done
  sed -i '$d' hw/*/Kconfig
  for i in hw/*; do
    if test -d $i &amp;&amp; ! test -f $i/Kconfig; then
      touch $i/Kconfig
      git add $i/Kconfig
    fi
  done

Whenever a symbol is referenced from multiple subdirectories, the
script prints the list of directories that reference the symbol.
These symbols have to be added manually to the Kconfig files.

Kconfig.host and hw/Kconfig were created manually.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Message-Id: &lt;20190123065618.3520-27-yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
</feed>
