diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h
index 1bc958a4..2dd147c8 100644
--- a/include/libcamera/controls.h
+++ b/include/libcamera/controls.h
@@ -272,6 +272,7 @@ public:
 			     const ControlValue &def = 0);
 	explicit ControlInfo(Span<const ControlValue> values,
 			     const ControlValue &def = {});
+	explicit ControlInfo(Span<const bool> values, bool def);
 
 	const ControlValue &min() const { return min_; }
 	const ControlValue &max() const { return max_; }
diff --git a/src/libcamera/controls.cpp b/src/libcamera/controls.cpp
index 34317fa0..e32e22e2 100644
--- a/src/libcamera/controls.cpp
+++ b/src/libcamera/controls.cpp
@@ -514,6 +514,26 @@ ControlInfo::ControlInfo(Span<const ControlValue> values,
 		values_.push_back(value);
 }
 
+/**
+ * \brief Construct a ControlInfo from a list of valid boolean values
+ * \param[in] values The control valid boolean vaalues
+ * \param[in] def The control default boolean value
+ *
+ * Construct a ControlInfo from a list of valid boolean values. The ControlInfo
+ * minimum and maximum values are set to the first and last members of the
+ * values list respectively. The default value is set to \a def.
+ */
+ControlInfo::ControlInfo(Span<const bool> values, bool def)
+	: def_(def)
+{
+	min_ = values.front();
+	max_ = values.back();
+
+	values_.reserve(2);
+	for (const bool &value : values)
+		values_.push_back(value);
+}
+
 /**
  * \fn ControlInfo::min()
  * \brief Retrieve the minimum value of the control
