Age | Commit message (Expand) | Author | Files | Lines |
2016-06-20 | Serena's presentation review |  Morgan Richomme | 1 | -164/+152 |
2016-06-20 | Merge "add slides for qtip" |  Morgan Richomme | 1 | -15/+29 |
2016-06-19 | Added content for StorPerf | .highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */#ifndef QEMU_SH_H
#define QEMU_SH_H
/* Definitions for SH board emulation. */
#include "hw/sh4/sh_intc.h"
#define A7ADDR(x) ((x) & 0x1fffffff)
#define P4ADDR(x) ((x) | 0xe0000000)
/* sh7750.c */
struct SH7750State;
struct MemoryRegion;
struct SH7750State *sh7750_init(SuperHCPU *cpu, struct MemoryRegion *sysmem);
typedef struct {
/* The callback will be triggered if any of the designated lines change */
uint16_t portamask_trigger;
uint16_t portbmask_trigger;
/* Return 0 if no action was taken */
int (*port_change_cb) (uint16_t porta, uint16_t portb,
uint16_t * periph_pdtra,
uint16_t * periph_portdira,
uint16_t * periph_pdtrb,
uint16_t * periph_portdirb);
} sh7750_io_device;
int sh7750_register_io_device(struct SH7750State *s,
sh7750_io_device * device);
/* sh_timer.c */
#define TMU012_FEAT_TOCR (1 << 0)
#define TMU012_FEAT_3CHAN (1 << 1)
#define TMU012_FEAT_EXTCLK (1 << 2)
void tmu012_init(struct MemoryRegion *sysmem, hwaddr base,
int feat, uint32_t freq,
qemu_irq ch0_irq, qemu_irq ch1_irq,
qemu_irq ch2_irq0, qemu_irq ch2_irq1);
/* sh_serial.c */
#define SH_SERIAL_FEAT_SCIF (1 << 0)
void sh_serial_init(MemoryRegion *sysmem,
hwaddr base, int feat,
uint32_t freq, CharDriverState *chr,
qemu_irq eri_source,
qemu_irq rxi_source,
qemu_irq txi_source,
qemu_irq tei_source,
qemu_irq bri_source);
/* sh7750.c */
qemu_irq sh7750_irl(struct SH7750State *s);
/* tc58128.c */
int tc58128_init(struct SH7750State *s, const char *zone1, const char *zone2);
#endif
n>/+1 |
2016-05-23 | Add framework for presentations |  Morgan Richomme | 119 | -0/+20622 |
2016-05-04 | Refactor improvements |  jose.lausuch | 1 | -1/+1 |
2016-04-29 | Functest - documentation small corrections |  David Blaisonneau | 2 | -2/+4 |
2016-04-29 | Add a step to enable docker run without sudo |  David Blaisonneau | 1 | -0/+1 |
2016-04-27 | Corrected path for clean_openstack.py |  vitikkan | 1 | -1/+1 |
2016-04-27 | Prepare Brahmaputra 3.0 release |  Morgan Richomme | 9 | -64/+5036 |
2016-04-18 | Generating test lists for tempest |  vitikkan | 1 | -4/+0 |
2016-04-12 | Remove unused Rally scenarios and run script |  Juha Kosonen | 1 | -1/+1 |
2016-03-18 | Fix support for CACERT and set OS_INSECURE=true |  jose.lausuch | 1 | -4/+12 |
2016-03-04 | Add support for SSL endpoints in Functest |  jose.lausuch | 1 | -0/+24 |
2016-02-25 | Add Proxy section in the config guide |  jose.lausuch | 1 | -0/+28 |
2016-02-25 | Samll corrections in the config guide |  jose.lausuch | 2 | -38/+38 |
2016-02-25 | remove ref to Opencontrail |  Morgan Richomme | 1 | -4/+4 |
2016-02-25 | Updates and fixes in the Config Guide |  jose.lausuch | 2 | -156/+250 |
2016-02-25 | Merge "Add release note" |  Morgan Richomme | 2 | -0/+312 |
2016-02-25 | Add release note |  Morgan Richomme | 2 | -0/+312 |
2016-02-25 | Updates and fixes to the user guide |  jose.lausuch | 4 | -122/+126 |
2016-02-25 | docs: fix pdf creation bug in userguide |  Ryota MIBU | 1 | -8/+9 |
2016-02-25 | Merge "minor fix on format + add doctor references" |  Morgan Richomme | 2 | -52/+62 |
2016-02-24 | Fix tables in the troubleshooting guide |  jose.lausuch | 1 | -27/+27 |
2016-02-24 | Add rally troubleshooting guide |  jose.lausuch | 3 | -12/+58 |
2016-02-24 | Merge "Add vPing troubleshooting guides" |  Morgan Richomme | 1 | -4/+174 |
2016-02-24 | minor fix on format + add doctor references |  Morgan Richomme | 2 | -52/+62 |
2016-02-24 | Add vPing troubleshooting guides |  jose.lausuch | 1 | -4/+174 |
2016-02-24 | Adjusting the heading level for composite doc rendering. |  ChristopherPrice | 1 | -1/+5 |
2016-02-24 | Merge "Fix Doc errors detected in opnfv-docs-verify and add license" |  jose.lausuch | 6 | -36/+44 |
2016-02-24 | Fix Doc errors detected in opnfv-docs-verify and add license |  jose.lausuch | 6 | -36/+44 |
2016-02-24 | Change table format |  Morgan Richomme | 1 | -44/+39 |
2016-02-24 | Fix formatting for compass and joid scenarios |  jose.lausuch | 4 | -29/+38 |